/nestjs-notes

NestJs notes to learn NestJs

Primary LanguageTypeScriptGNU General Public License v3.0GPL-3.0

nestjs-notes

NestJs notes to learn NestJs

Here's a brief overview of those core files:

app.controller.ts app.controller.spec.ts app.module.ts app.service.ts main.ts
A basic controller with a single route. The unit tests for the controller. The root module of the application. A basic service with a single method. The entry file of the application which uses the core function NestFactory to create a Nest application instance.