This is a API to control projects and tasks. It's is a simple CRUD, implemented in Node JS. This is the first challenge presented by Rocketseat Bootcamp.
Node JS
- Express js
- Nodemon
[
{
id: "1",
title: 'New project',
tasks: ['New task']
}
]
- POST /projects
- Body format
{ id: "#", title: 'test', tasks: [] }
-
GET /projects
-
PUT /projects/:id
- Body format
{ title: 'test'}
-
DELETE /projects/:id
-
POST /projects/:id/tasks
- Body format
{ title: 'test'}