Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 422 Bytes

File metadata and controls

25 lines (15 loc) · 422 Bytes

MYSQL NODE.JS AND EXPRESS REST API - CRUD

Update the connection settings first

get method example

Listing : localhost:3000/users


Create : localhost:3000/users/add/?name=John&email=[email protected]


Update : localhost:3000/users/update?id=1&name=Tom&email=[email protected]


Delete : localhost:3000/users/delete?id=1

mysql-node.js-and-express-rest-api-crud