Now we're ready to move to our next step, which is to start manage our application and split it into different parts, but we will group all related ones under one directory, which we'll call it a module
.
Modules
Modules are the main building blocks of our application, they are the main part of our application, and they are the ones that will be responsible for handling requests, responses, validation and database as well.
The module structure that we're going to use is the following:
src
├── app
│ ├── modules
│ │ ├── users
│ │ │ ├── controllers
│ │ │ │ ├── user.controller.ts
│ │ │ ├── validators
│ │ │ │ ├── create-user.validator.ts
│ │ │ ├── models
│ │ │ │ ├── user.model.ts
│ │ │ ├── middleware
│ │ │ │ ├── auth.middleware.ts
│ │ │ ├── responses
│ │ │ │ ├── user.response.ts
│ │ │ ├── utils
│ │ │ │ ├── user.locales.ts
│ │ │ ├── routes.ts
So in our previous schema, we'll have a directory called app
which will be in the src
directory, inside it there will be the modules
directory, and inside it there will be a directory for each module, and inside it there will be the controllers
, validators
, models
, middleware
, responses
, utils
and routes.ts
files and so on for each module we need.
PLease note that this structure can be used all of it or some of it based on the module requirements and size.
🎨 Project Repository
You can find the latest updates of this project on Github
😍 Join our community
Join our community on Discord to get help and support (Node Js 2023 Channel).
🎞️ Video Course (Arabic Voice)
If you want to learn this course in video format, you can find it on Youtube, the course is in Arabic language.
💰 Bonus Content 💰
You may have a look at these articles, it will definitely boost your knowledge and productivity.
General Topics
- Event Driven Architecture: A Practical Guide in Javascript
- Best Practices For Case Styles: Camel, Pascal, Snake, and Kebab Case In Node And Javascript
- After 6 years of practicing MongoDB, Here are my thoughts on MongoDB vs MySQL -
Packages & Libraries
- Collections: Your ultimate Javascript Arrays Manager
- Supportive Is: an elegant utility to check types of values in JavaScript
- Localization: An agnostic i18n package to manage localization in your project
React Js Packages
Courses (Articles)
Top comments (0)