A basic NestJS application to demonstrate logger-decorator Issue #124
$ npm install
# 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