vikasganiga05 / vanilla-node-rest-api

Full CRUD REST API using Node.js with no framework

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vanilla Node REST API

Full CRUD REST API using Node.js with no framework

This is for learning/experimental purposes. In most cases, you would use something like Express in a production project. This project is the Vanilla Node.js REST API from the Vanilla Node.js REST API | No Framework course by Traversy Media.

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

Usage

# Install dependencies
npm install

# Run in develpment
npm run dev

# Run in production
npm start

About

Full CRUD REST API using Node.js with no framework

License:MIT License


Languages

Language:JavaScript 100.0%