This project is designed to control tasks: -receiving, -adding, -deleting, -editing.
https://igorinni.github.io/ToDo-List/
- /routes - This folder would contain all the routes that you have created using Express Router and what they do would be exported from a Controller file
- /middlewares - This folder would contain all the middleware that you have created, whether it be authentication/some other function.
- /config - This folder with configuration files for third party APIs/services
To get a list of all tasks:
- use the GET method
- enter the URL: https://best-todo-list.onrender.com/tasks
To add a task to the list:
- use the POST method
- enter the URL: https://best-todo-list.onrender.com/task
To change a task:
- use the PATCH method
- enter the URL: https://best-todo-list.onrender.com/task/id
To delete a task:
- use the DELETE method
- enter the URL: https://best-todo-list.onrender.com/task/id
To delete all tasks:
- use the DELETE method
- enter the URL: https://best-todo-list.onrender.com/tasks