Skip to content

Latest commit

 

History

History
47 lines (28 loc) · 752 Bytes

README.md

File metadata and controls

47 lines (28 loc) · 752 Bytes

Node-Crud

Node js(ES6) CRUD operation using mongoose

Download and clone the repository

git clone https://github.com/senthilmca90/Node-Crud.git

go to inside the folder

cd Node-Crud

install packages

npm install

Connect your mongodb

start the node server

node server

check this url

http://localhost:3000

Check All Api's in Postman

//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