Skip to content

Latest commit

 

History

History
16 lines (8 loc) · 579 Bytes

README.md

File metadata and controls

16 lines (8 loc) · 579 Bytes

Restful Web APIs with Node.js, Express, PostgreSql and TypeScript

Clone And Run Npm Install

Run On PostMan

GET https://nosql-node-api.herokuapp.com/todo/api/v1.0/tasks Retrieve list of tasks

GET https://nosql-node-api.herokuapp.com/todo/api/v1.0/tasks/[task_id] Retrieve a task

POST https://nosql-node-api.herokuapp.com/todo/api/v1.0/tasks Create a new task

PUT https://nosql-node-api.herokuapp.com/todo/api/v1.0/tasks/[task_id] Update an existing task

DELETE https://nosql-node-api.herokuapp.com/todo/api/v1.0/tasks/[task_id] Delete a task