Skip to main content

FeatureModule

A FeatureModule allows you to split up your AngularApp in logical modular parts. It can contain one or more elements and will function as a namespace for the elements within that FeatureModule.

FeatureModules are located in the featureModules directory.

Naming

The name of your FeatureModule needs to be kebab-case. It cannot be the same as your AngularApp name.

project
├── conf
├── applications
├── angular
. ├── model
├── featureModules
. ├── space
. ├── model
. └── space.xml
<featureModule name="space">
</featureModule>

Once you've created a FeatureModule, you can start adding elements.