- REST HTTP API Server for CRUD operations in NodeJS without using any library / frameworks like Express, Axios etc.
- Referred from this Traversy Media video
GET /api/products
GET /api/products/:id
POST /api/products
PUT /api/products/:id
DELETE /api/products/:id
# Install dependencies
npm install
# Run in develpment
npm run dev
# Run in production
npm start