Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 805 Bytes

File metadata and controls

33 lines (25 loc) · 805 Bytes

A basic NestJS application to demonstrate logger-decorator Issue #124

Installation

$ npm install

Running the app

# development
$ npm run start

# watch mode
$ npm run start:dev

Within the lines the console should print out on startup are:

[RoutesResolver] UnmappedController {/unmapped}:
    // Nothing - As the methods inside fail to map
[RoutesResolver] MappedController {/mapped}:
[RouterExplorer] Mapped {/mapped, GET} route
[RouterExplorer] Mapped {/mapped/works, GET} route
    // route /mapped/fails does not get mapped

Further information can be found within the code

UnmappedController, MappedController