Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dieg0code/todo-api
test
https://github.com/dieg0code/todo-api
Last synced: 6 days ago
JSON representation
test
- Host: GitHub
- URL: https://github.com/dieg0code/todo-api
- Owner: Dieg0Code
- Created: 2022-03-09T06:41:02.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-03-09T07:21:25.000Z (over 2 years ago)
- Last Synced: 2024-04-16T20:23:45.226Z (7 months ago)
- Language: JavaScript
- Size: 41 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Todo list API
La API estΓ‘ hecha con NodeJS, Express y MongoDB.
Corre en el Puerto `5000`.
Para ejecutar una base de datos local, ejecutar el siguiente comando:
```
make run_mongodb
```o
```
docker run --name mongo -p 27017:27017 -d mongo mongod
```Las rutas disponibles son:
```
/api/todos
/api/users
```Ejemplo de uso:
```
[POST] http://localhost:5000/api/todos
```json:
```json
{
"name": "test",
"completed": true,
"description": "todo de prueba"
}
```Recomiendo hachar un ojo al ``Makefile`` para ver los comandos que se pueden ejecutar.
π€π€