This API allows you to manage a todo list with zero dependencies.
npm run startcurl -X GET "http://localhost:3333/tasks"curl -X GET "http://localhost:3333/tasks?search=wash dishes"curl -X POST "http://localhost:3333/tasks" -H "Content-Type: application/json" -d '{"title": "New task", "description": "blabla"}'curl -X DELETE "http://localhost:3333/tasks/TASK_ID"curl -X PUT "http://localhost:3333/tasks/TASK_ID" -H "Content-Type: application/json" -d '{"title": "New Title", "description": "New Description"}'curl -X PATCH "http://localhost:3333/tasks/TASK_ID/complete"curl -X POST "http://localhost:3333/tasks/import_csv" -F "file=@sample.csv"
# OR
curl -X POST "http://localhost:3333/tasks/import_csv" -H "Content-Type: application/json" -d '{"csv": [["Task 1", "Description 1"], ["Task 2", "Description 2"]]}'License
This project is licensed under the MIT License.