/my-express-api ├── /controllers ├── /middleware ├── /models ├── /routes ├── /services ├── /utils ├── /tests ├── /config ├── /node_modules ├── .env ├── .gitignore ├── app.js (or server.js) ├── package.json └── README.md /controllers - Contains the lo...