This is RESTful api that manages Products and Orders
Method | Product | Order |
---|---|---|
GET | /products | /orders |
GET byID | /products/ID | /orders/ID |
POST | /products(name, price & productImage) | /orders (productId & quantity) |
PATCH | /products/ID | /orders/ID |
DELETE | /products/ID | /orders/ID |
Link to live API
git clone it and thereafter run npm install.