Node Js Crud Api to add Products. Below please check list of endpoints
- Add Product - https://booklibrary-api.herokuapp.com/products
- Edit Product - https://booklibrary-api.herokuapp.com/products/ {your Product id }
- Delete Product - https://booklibrary-api.herokuapp.com/products/ { your Product id }
- Get Specific product - https://booklibrary-api.herokuapp.com/products/ { your Product id }
On Local server
- Add Product - http://localhost: {your Product address}/products
- Edit Product - http://localhost: {your Product address}/products/ {your Product id }
- Delete Product - http://localhost: {your Product address}/products/ { your Product id }
- Get Specific product - http://localhost: {your Product address}/products/ { your Product id }
- Clone this repo
- Run
npm install
to install all the dependencies - Run
npm start
for development mode