@nest-middlewares/vhost
TypeScript icon, indicating that this package has built-in type declarations

10.0.0 • Public • Published

Nest Middlewares - VHost

Coverage Status

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 */ );
    }
}

Package Sidebar

Install

npm i @nest-middlewares/vhost

Weekly Downloads

0

Version

10.0.0

License

MIT

Unpacked Size

5.33 kB

Total Files

6

Last publish

Collaborators

  • wbhob