NestJS Middleware for Cookie Parser
npm install @nest-middlewares/cookie-parser
This is the Nest Middleware wrapper around cookie-parser.
@nest-middlewares/cookie-parser is available from NPM. You can install it with this command:
``sh`
npm install --save @nest-middlewares/cookie-parser
`ts
import { CookieParserMiddleware } from '@nest-middlewares/cookie-parser';
@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(CookieParserMiddleware).forRoutes( / your routes / );
}
}
``