Based on my observations and learing from working on more than 5+ REST APIs projects in production I found the following structure of folder pretty neat both by code and files (Right now specific to Node.js applications)
src
├── config
│ ├── db.config.js
│ ├── logger.config.js
├── controllers
│ ├── Todos.controller.js
│ ├── Users.controller.js
│ ├── index.js
├── db
│ ├── redis.js
│ ├── mysql.js
│ ├── mongoose.js
│ ├── index.js
├── models
│ ├── Todo.model.js
│ ├── User.model.js
│ ├── index.js
├── routes
│ ├── App.routes.js
│ ├── Users.routes.js
│ ├── Todos.routes.js
│ ├── index.js
├── services
│ ├── Todos.service.js
│ ├── Users.service.js
│ ├── index.js
├── tests
│ ├── Todos.tests.js
│ ├── Users.tests.js
├── utils
│ └── Logger.js
│ ├── index.js
└── ExtraFolders/if you need
└── index.js
└── .env
src
contains all the code filessrc/index.js
is the enrty point for the applicationconfig
contains the different configurations that you may need to boot up your applicationcontrollers
contains the business logic of the routesdb
contains the connection files to different databases/data persistance you choosenmodels
contains your data models formongoose/sequelize
routes
contains the api endpoints and usecontrollers
for the logicservices
contains the code that interacts with your databases/persistance store and are used insidecontrollers
tests
contains your unit tests for the logic. Polite reminder: Unit tests are importantutils
contains all the code blocks as functions which are used more than once in your whole codebase.
- Gaurav has done a good job on implementing the above conventions in his payroll system
- RecastAI also got something similar. Hava a look at their bot-connector and also they got a Wiki
- The idea of having services was coined to me by Sudheer Signh Paliwal, fantastic engineer and singer, all rounder in short. 😊
- Addition of code examples for each file in different folders