Skip to content

RESTFul API CRUD demo using Node.js and MySql

Notifications You must be signed in to change notification settings

komalsdg/APIAPP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

APIAPP

This is an example of RESTful API CRUD demo using Node.js and MySql

Database strucure

CREATE TABLE IF NOT EXISTS `test` 
(`id`      int NOT NULL, 
 `user`     varchar(50) DEFAULT NULL, 
  PRIMARY KEY(`id`)) 
 ENGINE = InnoDB DEFAULT CHARSET = latin1;

Example below is given to test api in postman with specified url and parameters for all crud operations

Get All GetAll Api

Get By Id Get By Id Api

Add Add Api

Edit Edit Api

Delete Delete Api

Releases

No releases published

Packages

No packages published