@nest-middlewares/vhost
v10.0.0
Published
NestJS Middleware for Virtual Host
Downloads
11
Readme
Nest Middlewares - VHost
This is the Nest Middleware wrapper around vhost.
Installation
@nest-middlewares/vhost
is available from NPM. You can install it with this command:
npm install --save @nest-middlewares/vhost
Usage
import { VhostMiddleware } from '@nest-middlewares/vhost';
@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(VhostMiddleware).forRoutes( /* your routes */ );
}
}