Skip to main content

AngularApp

In order to define an angularProjects model you need a description of the AngularApp.

Under your project there needs to be a angular directory, this directory contains everything related to the Angular metamodel and expanders.

The angularApps directory can contain one or more directories, each for a different AngularApp. It is possible to have more than one AngularApp, but usually one per project works best. Under the model directory you can add the AngularApp XML file.

Naming
  • The name of your AngularApp needs to be kebab-case.
  • The value of the attribute prefix should also be kebab-case.
project
├── conf
├── applications
├── angular
. ├── angularApps
. ├── space-app
. ├── model
. └── space-app.xml
<angularApp name="space-app">
<version>1.0.0</version>
<prefix>nsx</prefix>
</angularApp>
note

prefix attribute is used to set a prefix in the angular.json and will be used by the Angular CLI to prepend created selectors.