Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/facundorocha18/-nestjs-todo-api-practice
https://github.com/facundorocha18/-nestjs-todo-api-practice
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/facundorocha18/-nestjs-todo-api-practice
- Owner: FacundoRocha18
- Created: 2023-04-26T17:38:20.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-05-18T23:35:06.000Z (over 1 year ago)
- Last Synced: 2023-11-17T16:08:03.877Z (about 1 year ago)
- Language: TypeScript
- Size: 95.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[circleci-image]: https://img.shields.io/circleci/build/github/nestjs/nest/master?token=abc123def456
[circleci-url]: https://circleci.com/gh/nestjs/nest
A progressive Node.js framework for building efficient and scalable server-side applications.
## Description
Esta API recibe solicitudes por medio de un cliente HTTP como Postman o Thunder Client y almacena tareas pendientes o "To Do".
La API puede recibir solitudes con un titulo y contenido para crear una tarea, a esos datos le agrega un UUID y un TimeStamp y posteriormente lo almacena en una base de datos. Luego se puede buscar esa tarea con el ID o listar todas las tareas almacenadas, eliminar por ID o eliminar todas y modificar una tarea con ID. Esta API hace uso de TypeOrm, TypeScript, PostgreSql, Express y Programación orientada a objetos.
## Installation
```bash
$ npm install
```## Running the app
```bash
# development
$ npm run start# watch mode
$ npm run start:dev# production mode
$ npm run start:prod
```## Test
```bash
# unit tests
$ npm run test# e2e tests
$ npm run test:e2e# test coverage
$ npm run test:cov
```## Support
Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please [read more here](https://docs.nestjs.com/support).
## Stay in touch
- Author - [Kamil Myśliwiec](https://kamilmysliwiec.com)
- Website - [https://nestjs.com](https://nestjs.com/)
- Twitter - [@nestframework](https://twitter.com/nestframework)## License
Nest is [MIT licensed](LICENSE).