Angular Plugin

Angular logo

The Nx Plugin for Angular contains executors, generators, and utilities for managing Angular applications, and libraries within an Nx workspace. It provides:

  • Integration with libraries such as Jest, Cypress, Karma, Protractor, and Storybook.
  • Helper services, and functions to use along with NgRx libraries.
  • Scaffolding for upgrading AngularJS applications.
  • Scaffolding for creating buildable libraries that can be published to npm.
  • Utilities for automatic workspace refactoring.

Adding the Angular plugin

Adding the Angular plugin to a workspace can be done with the following:

#yarn
yarn add -D @nrwl/angular
#npm
npm install -D @nrwl/angular

Angular Projects in an Nx Workspace

Building Angular applications within an Nx workspace is similar to building within a vanilla Angular CLI workspace, with a few differences.

  • ESLint is used as the default linter, configurable in the generators section of the workspace configuration.
  • Jest is used as the default unit test runner, configurable in the generators section of the workspace configuration.
  • Cypress is used as the default E2E test runner, configurable in the generators section of the workspace configuration.
  • E2E tests are included in a separate project from the Angular application itself.
  • The Nx CLI delegates common commands such as build, serve, test, lint, and e2e to the Angular CLI.

The file structure for an Angular application looks like:

myorg/
β”œβ”€β”€ apps/
β”‚   β”œβ”€β”€ myapp/
β”‚   β”‚   β”œβ”€β”€ src/
β”‚   β”‚   β”‚   β”œβ”€β”€ app/
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ app.component.html
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ app.component.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ app.component.spec.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ app.component.ts
β”‚   β”‚   β”‚   β”‚   └── app.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ assets/
β”‚   β”‚   β”‚   β”œβ”€β”€ environments/
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ environment.prod.ts
β”‚   β”‚   β”‚   β”‚   └── environment.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ favicon.ico
β”‚   β”‚   β”‚   β”œβ”€β”€ index.html
β”‚   β”‚   β”‚   β”œβ”€β”€ main.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ polyfills.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ styles.scss
β”‚   β”‚   β”‚   └── test-setup.ts
β”‚   β”‚   β”œβ”€β”€ .browserslistrc
β”‚   β”‚   β”œβ”€β”€ .eslintrc.json
β”‚   β”‚   β”œβ”€β”€ jest.config.js
β”‚   β”‚   β”œβ”€β”€ tsconfig.app.json
β”‚   β”‚   β”œβ”€β”€ tsconfig.editor.json
β”‚   β”‚   β”œβ”€β”€ tsconfig.json
β”‚   β”‚   └── tsconfig.spec.json
β”‚   └── myapp-e2e/
β”‚       β”œβ”€β”€ src/
β”‚       β”‚   β”œβ”€β”€ fixtures/
β”‚       β”‚   β”‚   └── example.json
β”‚       β”‚   β”œβ”€β”€ integration/
β”‚       β”‚   β”‚   └── app.spec.ts
β”‚       β”‚   β”œβ”€β”€ plugins/
β”‚       β”‚   β”‚   └── index.ts
β”‚       β”‚   └── support/
β”‚       β”‚       β”œβ”€β”€ app.po.ts
β”‚       β”‚       β”œβ”€β”€ commands.ts
β”‚       β”‚       └── index.ts
β”‚       β”œβ”€β”€ .eslintrc.json
β”‚       β”œβ”€β”€ cypress.json
β”‚       β”œβ”€β”€ tsconfig.e2e.json
β”‚       └── tsconfig.json
β”œβ”€β”€ libs/
β”œβ”€β”€ tools/
β”‚   β”œβ”€β”€ generators/
β”‚   └── tsconfig.tools.json
β”œβ”€β”€ .editorconfig
β”œβ”€β”€ .eslintrc.json
β”œβ”€β”€ .gitignore
β”œβ”€β”€ .prettierignore
β”œβ”€β”€ .prettierrc
β”œβ”€β”€ angular.json
β”œβ”€β”€ decorate-angular-cli.js
β”œβ”€β”€ jest.config.js
β”œβ”€β”€ jest.preset.js
β”œβ”€β”€ nx.json
β”œβ”€β”€ package.json
β”œβ”€β”€ README.md
└── tsconfig.base.json

See Also

Executors / Builders

  • delegate-build - Delegates the build to a different target while supporting incremental builds.
  • ng-packagr-lite - Builds a library with support for incremental builds.
  • package - Builds and packages an Angular library to be distributed as an NPM package. It supports incremental builds.
  • webpack-browser - Builds a browser application with support for incremental builds and custom webpack configuration.

Generators

  • application - Creates an Angular application.
  • convert-tslint-to-eslint - Converts a project from TSLint to ESLint.
  • downgrade-module - Sets up a Downgrade Module.
  • karma - Adds Karma configuration to a workspace.
  • karma-project - Adds Karma configuration to a project.
  • library - Creates an Angular library.
  • move - Moves an Angular application or library to another folder within the workspace and updates the project configuration.
  • ngrx - Adds NgRx support to an application or library.
  • setup-mfe - Generate a Module Federation configuration for a given Angular application.
  • stories - Creates stories/specs for all components declared in a project.
  • storybook-configuration - Adds Storybook configuration to a project.
  • storybook-migrate-defaults-5-to-6 - Generates default Storybook configuration files using Storybook version >=6.x specs, for projects that already have Storybook instances and configurations of versions <6.x.
  • storybook-migrate-stories-to-6-2 - Migrates stories to match the new syntax in v6.2 where the component declaration should be in the default export.
  • upgrade-module - Sets up an Upgrade Module.
  • web-worker - Creates a Web Worker.

Public API

  • DataPersistence - Angular Service that provides convenience methods for common operations of persisting data.
  • fetch - Handles data fetching, and correct ordering of fetching using NgRx Effects.
  • navigation - Handles data fetching based on navigating to a certain component using NgRx Effects.
  • optimisticUpdate - Handles optimistic updates (updating the client first) using NgRx Effects.
  • pessimisticUpdate - Handles pessimistic updates (updating the server first) using NgRx Effects.
  • NxModule - An NgModule used to register the Angular providers, including DataPersistence.