node.jstypescriptnestjs

What's the difference between Interceptor vs Middleware vs Filter in Nest.js?


What's the difference between an Interceptor, Filter and Middleware in Nest.js framework? When should one of them be used and favored over the other?

Thanks


Solution

  • As you already implied with your question, all three are very similar concepts and in a lot of cases it is hard to decide and comes down to your preferences. But I can give an overview of the differences:

    Interceptors

    Interceptors have access to response/request before and after the route handler is called.

    Registration

    Examples

    Conclusion

    I like that the registration is closer to the route handlers compared to middleware. But there are some limitations, for example, you cannot set the response code or alter the response with Interceptors when you send the response with the library-specific @Res() object in your route handler, see docs.

    Middleware

    Middleware is called only before the route handler is called. You have access to the response object, but you don't have the result of the route handler. They are basically express middleware functions.

    Registration

    Examples

    Conclusion

    The registration of middleware is very flexible, for example: apply to all routes but one etc. But since they are registered in the module, you might not realize it applies to your controller when you're looking at its methods. It's also great that you can make use of all the express middleware libraries that are out there.

    Exception Filters

    Exception Filters are called after the route handler and after the interceptors. They are the last place to make changes before a response goes out.

    Registration

    Examples

    Conclusion

    The basic use case for exception filters are giving understandable error messages (hiding technical details). But there are also other creative ways of usage: When you serve a single page application, then typically all routes should redirect to index.html except the routes of your API. Here, you can redirect on a NotFoundException. Some might find this clever others hacky. Your choice. ;-)


    So the execution order is:

    Middleware -> Interceptors -> Route Handler -> Interceptors -> Exception Filter (if exception is thrown)

    With all three of them, you can inject other dependencies (like services,...) in their constructor.