@nrwl/angular:host
Create an Angular Host Module Federation Application.
Usage
nx generate host ...
By default, Nx will search for host
in the default collection provisioned in workspace.json.
You can specify the collection explicitly as follows:
nx g @nrwl/angular:host ...
Show what will be generated without writing to disk:
nx g host ... --dry-run
Examples
Create an Angular application with configuration in place for Module Federation. If the remotes
option is provided, attach the remote application to this application's configuration:
nx g @nrwl/angular:host appName --remotes=remote1
Options
addTailwind
false
Whether to configure Tailwind CSS for the application.
backendProject
Backend project that provides data to this application. This sets up proxy.config.json
.
dynamic
false
Should the host application use dynamic federation?
directory
The directory of the new application.
e2eTestRunner
cypress
protractor
, cypress
, none
Test runner to use for end to end (E2E) tests.
inlineStyle
false
Specifies if the style will be in the ts file.
inlineTemplate
false
Specifies if the template will be in the ts file.
linter
eslint
eslint
, none
The tool to use for running lint checks.
name
The name to give to the host Angular application.
prefix
html-selector
The prefix to apply to generated selectors.
remotes
The names of the remote applications to add to the host.
style
css
css
, scss
, sass
, less
The file extension to be used for style files.
skipTests
false
Skip creating spec files.
skipPackageJson
false
Do not add dependencies to package.json
.
skipPostInstall
false
Do not add or append ngcc
to the postinstall
script in package.json
.
strict
true
Create an application with stricter type checking and build optimization options.
standaloneConfig
Split the project configuration into <projectRoot>/project.json
rather than including it inside workspace.json
.
setParserOptionsProject
false
Whether or not to configure the ESLint parserOptions.project
option. We do not do this by default for lint performance reasons.
skipFormat
false
Skip formatting files.
tags
Add tags to the application (used for linting).
unitTestRunner
jest
karma
, jest
, none
Test runner to use for unit tests.
viewEncapsulation
Emulated
, None
, ShadowDom
Specifies the view encapsulation strategy.