Node js(ES6) CRUD operation using mongoose
git clone https://github.com/senthilmca90/Node-Crud.git
go to inside the folder
cd Node-Crud
npm install
Connect your mongodb
node server
//POST USER http://localhost:3000/api/user
{ name : "senthil", email : "[email protected]" }
//GET ALL USER http://localhost:3000/api/user
//GET user by Id http://localhost:3000/api/user/59f9b83d6b1ac71d8c461588
//Update user details by Id http://localhost:3000/api/user/59f9b83d6b1ac71d8c461588
//Delete user details by Id http://localhost:3000/api/user/59f9b83d6b1ac71d8c461588