For help with understanding when middleware is executed, take a look at the page.

    Fastify middleware don't support the full syntax , because error handling is done inside Fastify. Furthermore, methods added by Express and Restify to the enhanced versions of req and res are not supported in Fastify middlewares.

    Also, if you are using middleware that bundles different, smaller middleware, such as helmet, we recommend using the single modules for better performance.

    Remember that middleware can be encapsulated, this means that you can decide where your middleware should run by using register as explained in the .

    Fastify middleware also do not expose the send method or other methods specific to the Fastify Reply instance. This is because Fastify wraps the incoming and res Node instances using the and Reply objects internally, but this is done after the middleware phase. If you need to create middleware, you have to use the Node req and res instances. Otherwise, you can use the preHandler hook which already has the and Reply Fastify instances. For more information, see .

    Restrict middleware execution to a certain path(s)

    Note that this does not support routes with parameters, (eg: /user/:id/comments) and wildcards are not supported in multiple paths.

    Express middleware compatibility

    Express 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 is compatible while is not.