Module

The importance of modules in the ModularBr framework.

IMPORTS : In ModularBr, the imports feature is used to import binds from other modules. This allows you to access dependencies and functionalities provided by other modules in your own module.

BINDS (Dependency Injection) : Dependency injection is an essential design pattern for managing dependencies in an application. In ModularBr, you can use binds to define and map the dependencies of your modules. With dependency injection, you can provide instances of classes, services, or other objects required for your application to function properly.

ROUTES : In ModularBr, the routes feature is used to define routes and navigation in your application. You can define named routes for different screens or flows of the application. When navigating to a specific route, you can specify the desired behavior, such as creating a new module or displaying a specific screen.

ROUTEHANDLERS : In ModularBr, route handlers are used to define actions and logic that will be executed when navigating to a specific route. For example, you can define a handler that performs authentication before allowing access to a specific screen. This allows you to customize and control the navigation behavior in your routes.

EXPOSTEDBINDS : In ModularBr, the concept of exposed binds allows you to share dependencies between modules. You can expose specific binds from a module so that other modules can access and use them as dependencies. This promotes code reuse and sharing of functionalities between the modules of your application.

Modules play a crucial role in developing applications with the ModularBr framework. They are responsible for encapsulating the application's functionality into logical and independent units, making the code more organized, modular, and easy to maintain.

Each module defines its own routes and dependency injections, allowing the code to be reused in different parts of the application. Furthermore, modules can be easily added or removed as the application grows and evolves.

The use of modules also facilitates collaboration among development team members, as different developers can work on different modules without interfering with each other's work.

Therefore, it is important for every application developed with ModularBr to have well-defined and organized modules in order to ensure a solid, scalable, and easily maintainable structure.

ModularBr provides a simple and efficient way to share resources between different modules through the concepts of Bind and Import. Bind is essentially a way to register a resource (such as a class, for example) that can be injected as a dependency into other modules. On the other hand, Import is a way to import these resources from other modules.

Last updated