Todo app backend api server
REST API will include "todos" resources, support the following routes:
GET /api/todos
- returns a list of todosGET /api/todos/:id
- returns a specific todoPOST /api/todos
- create a new todoPUT /api/todos/:id
- update a specific todo
$ git clone https://github.com/anoopmundathan/todoapp-be.git
$ cd todoapp-be
$ npm i
$ npm start
http://localhost:8000
For the corresponding F/E app head over to - https://github.com/anoopmundathan/todoapp-fe.git