Rest API para CRUD de notas.
npm install
npm start
Os exemplos dos endpoints estão descritos abaixo
GET /notes
http://localhost:3333/notes
[]
POST /notes
status 200
http://localhost:3333/notes
{"text: "o texto da nota"}
status 201
{"id": 3,"date": "2022-01-05T22:56:42.089Z","text": "Lembrar de alguma coisa"}
GET /notes/id
http://localhost:3333/notes/1
status 200
{"id": 3,"date": "2022-01-05T22:56:42.089Z","text": "Lembrar de alguma coisa"}
GET /notes/id
http://localhost:3333/notes/999
status 404
{"erro": "Nota não encontrada"}
DELETE /notes/id
http://localhost:3333/notes/1
status 204
PUT /notes/id
http://localhost:3333/notes/1
status 200
{"id": 3,"date": "2022-01-05T22:56:42.089Z","text": "Lembrar de alguma coisa"}