Build a Restful CRUD API for a simple Note-Taking application using Node.js, Express and MongoDB.
- Install dependencies
npm install
- Run Server
node server.js
You can browse the apis at http://localhost:8080 POST http://localhost:8080/notes {"title":"something","content":"anything"} GET http://localhost:8080/notes PUT http://localhost:8080/notes/{_id} DELETE http://localhost:8080/notes/{_id}