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
- Host: GitHub
- URL: https://github.com/ndmen/nodejstodo
- Owner: ndmen
- Created: 2022-02-07T09:44:11.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-07T16:49:33.000Z (over 4 years ago)
- Last Synced: 2025-03-14T10:21:21.615Z (over 1 year ago)
- Topics: express, javascript, nodejs, postgresql
- Language: JavaScript
- Homepage:
- Size: 692 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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