Farhan-ns / notes-app-back-end

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Notes API

All notes are stored in notes.js

Endpoints

Get All Notes

GET /notes

Get Note by ID

GET /notes/{id}

Add Note

POST /notes
Note Object:
{
    title,
    tags[],
    body
}

Edit Note

PUT /notes/{id}
Note Object:
{
    title,
    tags[],
    body
}

Delete Note

DELETE /notes/{id}

About


Languages

Language:JavaScript 99.4%Language:Procfile 0.6%