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

10.0.0 • Public • Published

Nest Middlewares - Morgan

Coverage Status

This is the Nest Middleware wrapper around morgan.

Installation

@nest-middlewares/morgan is available from NPM. You can install it with this command:

npm install --save @nest-middlewares/morgan

Usage

import { MorganMiddleware } from '@nest-middlewares/morgan';

@Module(...)
export class MyModule {
    configure(consumer: MiddlewaresConsumer) {
        // IMPORTANT! Call Middleware.configure BEFORE using it for routes
        MorganMiddleware.configure( /* options as per morgan docs */ )
        consumer.apply(MorganMiddleware).forRoutes( /* your routes */ );
    }
}

Package Sidebar

Install

npm i @nest-middlewares/morgan

Weekly Downloads

787

Version

10.0.0

License

MIT

Unpacked Size

5.82 kB

Total Files

6

Last publish

Collaborators

  • wbhob