An open API service indexing awesome lists of open source software.

https://github.com/ndmen/nodejstodo

Todo Backend on Node, Express and Postgres
https://github.com/ndmen/nodejstodo

express javascript nodejs postgresql

Last synced: 2 months ago
JSON representation

Todo Backend on Node, Express and Postgres

Awesome Lists containing this project

README

          

# nodejstodo
This is Todo application on Node, Express and Postgres

You can send requests:

1. Create a todo

POST http://localhost:4000/todos

Body
{
"description": "hello"
}

2. Get a todo

GET http://localhost:4000/todos/:id

3. Get all todos

GET http://localhost:4000/todos

4. Update a todo

PUT http://localhost:4000/todos/:id

5. Delete a todo

DELETE http://localhost:4000/todos/:id