NestJS Crash Course: Everything you need to know!
- Starting a new project
- 3 Layer architecture
- Configuring endpoints
- Creating a new module
- Parsing URL params
- Exemple of dependency Injection
- Body parsing, DTOs, and entities
- Swagger OpenAPI Docs
- Parsing query parameters
- Exception and error handling
- Pipes intro
- Validation intro
- Using the CLI to generate CRUD
- Nest - framework TypeScript
- Node.js - is an open-source, cross-platform JavaScript runtime environment
- Class-validator - Allows use of decorator and non-decorator based validation
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov