UNPKG

3.54 kBMarkdownView Raw
1<h1 align="center">Fastify</h1>
2
3## Middlewares
4
5Fastify out of the box provides an asynchronous [middleware engine](https://github.com/fastify/middie) compatible with [Express](https://expressjs.com/) and [Restify](http://restify.com/) middlewares.
6
7*If you need a visual feedback to understand when the middlewares are executed take a look to the [lifecycle](https://github.com/fastify/fastify/blob/master/docs/Lifecycle.md) page.*
8
9Fastify middlewares don't support the full syntax `middleware(err, req, res, next)`, because error handling is done inside Fastify.
10Furthermore methods added by Express and Restify to the enhanced versions of `req` and `res` are not supported in Fastify middlewares.
11
12Also, if you are using a middleware that bundles different, smaller middlewares, such as [*helmet*](https://helmetjs.github.io/), we recommend to use the single modules to get better performances.
13
14```js
15fastify.use(require('cors')())
16fastify.use(require('dns-prefetch-control')())
17fastify.use(require('frameguard')())
18fastify.use(require('hide-powered-by')())
19fastify.use(require('hsts')())
20fastify.use(require('ienoopen')())
21fastify.use(require('x-xss-protection')())
22```
23
24or, in the specific case of *helmet*, you can use the [*fastify-helmet*](https://github.com/fastify/fastify-helmet) [plugin](Plugins.md), which is an optimized helmet integration for fastify:
25
26```js
27const fastify = require('fastify')()
28const helmet = require('fastify-helmet')
29
30fastify.register(helmet)
31```
32
33Remember that middlewares can be encapsulated, this means that you can decide where your middlewares should run by using `register` as explained in the [plugins guide](https://github.com/fastify/fastify/blob/master/docs/Plugins-Guide.md).
34
35Fastify middlewares also do not expose the `send` method or other methods specific to the Fastify [Reply]('./Reply.md' "Reply") instance. This is because Fastify wraps the incoming `req` and `res` Node instances using the [Request](./Request.md "Request") and [Reply](./Reply.md "Reply") objects internally, but this is done after the middlewares phase. If you need to create a middleware you have to use the Node `req` and `res` instances. Otherwise, you can use the `preHandler` hook that has the [Request](./Request.md "Request") and [Reply](./Reply.md "Reply") Fastify instances. For more information, see [Hooks](./Hooks.md "Hooks").
36
37<a name="restrict-usage"></a>
38#### Restrict middleware execution to a certain path(s)
39If you need to run a middleware only under certain path(s), just pass the path as first parameter to `use` and you are done!
40
41*Note that this does not support routes with parameters, (eg: `/user/:id/comments`) and wildcard is not supported in multiple paths.*
42
43```js
44const path = require('path')
45const serveStatic = require('serve-static')
46
47// Single path
48fastify.use('/css', serveStatic(path.join(__dirname, '/assets')))
49
50// Wildcard path
51fastify.use('/css/*', serveStatic(path.join(__dirname, '/assets')))
52
53// Multiple paths
54fastify.use(['/css', '/js'], serveStatic(path.join(__dirname, '/assets')))
55```
56
57<a name="express-middleware"></a>
58#### Express middleware compatibility
59Express modifies the prototype of the node core Request and Response objects heavily so Fastify cannot guarantee full middleware compatibility. Express specific functionality such as `res.sendFile()`, `res.send()` or `express.Router()` instances will not work with Fastify. For example, [cors](https://github.com/expressjs/cors) is compatible while [passport](https://github.com/jaredhanson/passport) is not.