This is a CRUD App that allows a user create, read, update and delete an item from a todo list.
- Git clone this repo to your computer
- Open the folder in a command line and run
node app.js
- On your browser, open
http://localhost/3000
- create: POST
http://localhost/3000/todo
/todos` - read:GET
http://localhost/3000/todos
- update:PATCH
http://localhost/3000/todo/:id
- delete: DELETE
http://localhost/3000/todo/:id
- Node.js
- Express
- Mongodb/Mongoose