How To Set Up A REST API
Written For Linux OS
Start With The Connection
My File Structure for this tutorial is like this
.
└── src
├── controllers
│ └── index.js
├── db
│ └── connection.js
├── middleware
│ └── index.js
├── models
│ └── index.js
├── routes
│ └── index.js
├── server.js
└── user
└── index.js