Nest Middlewares - Error Handler
This is the Nest Middleware wrapper around errorhandler.
Installation
@nest-middlewares/errorhandler
is available from NPM. You can install it with this command:
npm install --save @nest-middlewares/errorhandler
Usage
import { ErrorHandlerMiddleware } from '@nest-middlewares/errorhandler';
@Module(...)
export class MyModule {
configure(consumer: MiddlewaresConsumer) {
// IMPORTANT! Call Middleware.configure BEFORE using it for routes
HelmetMiddleware.configure( /* options as per helmet docs */ )
consumer.apply(ErrorHandlerMiddleware).forRoutes( /* your routes */ );
}
}