@bespunky/angular-zen
exports the following modules:
Name | Description |
---|---|
CoreModule |
Contains general tools that normally serve for infrastructure code. |
AsyncModule |
Contains tools for handling dynamic and async situations on the page. |
UniversalModule |
Contains tools for working easily with Angular Universal and SSR. |
RouterXModule |
Contains tools for routing related tasks. |
LanguageIntegrationModule |
Contains tools for integrating your library with your user's language services. |
If you find yourself frequently importing the same modules, consider creating a shared module for them and import that module instead:
Create the shared module:
ng generate module path/to/module/SharedZen
Import zen modules into the shared module:
Use the shared module in your app: