-
Notifications
You must be signed in to change notification settings - Fork 0
Estrutura Node
Antônio Ricart edited this page Aug 9, 2020
·
1 revision
Estrutura de pastas de projetos em Node devem ser organizadas seguindo esse exemplo:
Project
├── src
│ ├── index.js
│ ├── Router.js
│ ├── routes
│ │ └── UserRoutes.js
│ │ └── ...
│ ├── controllers
│ │ └── UserController.js
│ │ └── ...
│ ├── model
│ │ └── User.js
│ │ └── ...
│ ├── services (optional)
│ │ └── UserService.js
│ │ └── ...
│ ├── database
│ │ └── Connection.js
│ │ └── UserSchema.js (optional)
│ │ └── ...
│ ├── config (optional)
│ │ └── ...
│ ├── utils (optional)
│ └── └── ...
└── .gitignore