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