express project structure

Solutions on MaxInterview for express project structure by the best coders in the world

showing results for - "express project structure"
Cecilia
17 Jul 2020
1       ├─ .env
2       ├─ .gitignore
3       ├─ config
4       │  ├─ config.js
5       │  ├─ database.js
6       │  ├─ routes.js
7       │  └─ server.js
8       ├─ index.js
9       ├─ package.json
10       └─ src
11          ├─ controllers
12          │  ├─ AuthController.js
13          │  ├─ Controller.js
14          │  ├─ MediaController.js
15          │  └─ PostController.js
16          ├─ helpers
17          │  ├─ HttpError.js
18          │  ├─ HttpResponse.js
19          │  └─ Utility.js
20          ├─ models
21          │  ├─ Auth.js
22          │  ├─ Media.js
23          │  ├─ Post.js
24          │  └─ User.js
25          ├─ routes
26          │  ├─ auth.js
27          │  ├─ index.js
28          │  ├─ media.js
29          │  └─ post.js
30          └─ services
31             ├─ AuthService.js
32             ├─ MediaService.js
33             ├─ PostService.js
34             ├─ Service.js
35             └─ UserService.js
36