Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 382 Bytes

File metadata and controls

27 lines (19 loc) · 382 Bytes

Vanilla Node.js REST API | No Framework used

Full CRUD REST API using Node.js with no framework

Routes

GET      /api/products
POST     /api/products
GET      /api/products/:id
PUT      /api/products/:id
DELETE   /api/products/:id

Installation

# Install dependencies
npm install

# Run in develpment
npm run dev

# Run in production
npm start