Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 371 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 371 Bytes

Task Tracker - Backend

Run locally

npm ci
npm run dev

Routes available

  • POST /api/task - create task
  • GET /api/task - get all active and 10 completed tasks
  • GET /api/task?filter=text - get all active and 10 completed tasks that contain text
  • PATCH /api/task/:id - set task as done or not done
  • DELETE /api/task - delete all tasks