Modules
waku
modularity system is heavily inspired by the NestJS
and Tramvai frameworks.
The concept of modularity is well-explained with examples in the NestJS documentation.
Module¶
A module is a class annotated with the @module()
decorator. This decorator attaches metadata to the class,
which waku
uses to construct the application graph.
Every waku
application has at least one module: the root module, also known as the composition root.
This module serves as the starting point for waku
to build the entire application graph.
Parameter | Description |
---|---|
providers |
List of providers for dependency injection |
imports |
List of modules imported by this module |
exports |
List of types or modules exported by this module |
extensions |
List of module extensions for lifecycle hooks |
is_global |
Whether this module is global or not |
The module encapsulates providers by default, meaning you can only inject providers that are either part of the current module or explicitly exported from other imported modules. The exported providers from a module essentially serve as the module's public interface or API.
Note
Encapsulation is enforced by validators, which you can disable at runtime if needed. However, disabling them entirely is not recommended, as they help maintain modularity.
Module Re-exporting¶
You can re-export a module by including it in the exports
list of another module.
This is useful for exposing a module’s providers to other modules that import the re-exporting module.
Global modules¶
If you need to import the same set of modules across your application, you can mark a module as global. Once a module is global, its providers can be injected anywhere in the application without requiring explicit imports in every module.
To make a module global, set the is_global
param to True
in the @module()
decorator.
Note
Root module are always global.
Warning
Global modules are not recommended for large applications, as they can lead to tight coupling and make the application harder to maintain.
Dynamic Module¶
Dynamic modules allow you to create modules dynamically based on conditions, such as the runtime environment of your application.
And then you can use it in any of your modules or in the root module:
You can also make a dynamic module global by setting is_global=True
in the DynamicModule
constructor.
Note
While you can use any method name instead of register
, we recommend sticking with register
for consistency.