Skip to content

Latest commit

 

History

History
31 lines (27 loc) · 854 Bytes

File metadata and controls

31 lines (27 loc) · 854 Bytes

Nodejs Restful API CRUD

Restful api curd tutorial for node.js beginner.

Installation

git clone https://github.com/CrackiGuy/node-restapi.git
cd node-restapi && npm install
npm start

Routes List

route method description
/customers get get all customers
/customers/:id get get a customer via :id
/customers post create new customer
/customers put update a customer info
/customers/:id delete delete a customer via :id
/customers delete delete all customers

Using With