A progressive Node.js framework for building efficient and scalable server-side applications, heavily inspired by Angular.
Task Management API create with NestJS.
- Develop production-ready REST API's
- CRUD operations
- Erro handling
- Data transfer Objects (DTO)
- System modularity
- Backend development best practices
- Configuration management
- Logging
- Security best practices
-
/tasks GET => Get tasks (include filter) ✔️
-
/tasks/:id GET => Get a task ✔️
-
/tasks POST => Create a task ✔️
-
/tasks/:id DELETE => Delete a task ✔️
-
/tasks/:id/status PATCH => Update task status ✔️
-
/auth/signup POST => Sing up
-
/auth/signin POST => Sing in
$ npm install
# 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
Nest is MIT licensed.