Nx and the Angular CLI

Nx evolved from being an extension of the Angular CLI to a fully standalone CLI working with multiple frameworks. As a result, adopting Nx as an Angular user is relatively straightforward. This guide explores some of the similarities and in particular, added benefits of using Nx over the Angular CLI for your Angular project.

TL;DR: Why should I use Nx for my Angular project?

Nx...

  • helps define clear architectural guidelines and promotes best practices to organize and scale your codebase.
  • helps integrate modern tooling by actively working with devtool authors to make sure they work well with Nx and your framework of choice.
  • is adaptable: start small with a single-project setup and grow it to a monorepo when needed.
  • has an active community of contributors and plugin authors.
  • has been proven in large enterprise-level projects.

Note, the Nx team's focus is on building the best possible developer productivity tool.

Quick Overview Comparison

Here's a quick side-by-side overview comparing the features between the Angular CLI and Nx. (Kudos to Daniel Glejzner for helping with this)

Feature/ToolAngular CLINx
Create Angular Appsโœ…โœ…
Generate Angular Components, Services, etc.โœ…โœ…
Building & Bundlingโœ…โœ…
Local Development Serverโœ…โœ…
Code Schematicsโœ…โœ…
Automated Update with Migrationsโœ…โœ… (Enhanced)
Generatorsโœ… (Schematics)โœ…
Executorsโœ… (Builders)โœ…
Advanced Generators (e.g. Module Federation, Tailwind,...)โŒโœ…
Integrated Tooling (Jest, Cypress, Playwright etc.)โŒโœ…
Support for single-project Workspacesโœ…โœ…
First-Class Monorepo SupportโŒ*โœ…
Enforced Module BoundariesโŒโœ…
Interactive Project GraphโŒโœ…
Task GraphโŒโœ…
Running Tasks in ParallelโŒโœ…
Building, Testing Only What is AffectedโŒโœ…
Local CachingโŒ**โœ…
Remote CachingโŒโœ…
Distributed Task Execution on CIโŒโœ…
Custom HashersโŒโœ…
Extensible Plugin SystemโŒโœ…
Notes

* You can setup a monorepo with the Angular CLI creating buildable Angular ng-packagr projects, but the DX is not as optimized compared to what you'd get with Nx.

** The Angular CLI has a caching mechanism which persists the Webpack/ESBuild/"TS incremental build info" cache to disk. Nx leverages that cache as well but in addition adds a more powerful process-level caching on top that is framework agnostic.

Similarities and Differences

Learn about the similarities between the Angular CLI and Nx which makes it easy to migrate but also about how Nx goes beyond to further improve your developer productivity.

Not just for Monorepos: Project Setup & Structure

Nx is not just exclusively for monorepos, but can create

  • a single-project workspace (basically what the Angular CLI gives you)
  • a monorepo workspace (multiple projects in a single repo)

You can check out the Angular single-project workspace tutorial to learn more about it.

Generate a new project

You can create a new Nx single-project workspace using the following command:

โฏ

npx create-nx-workspace myngapp --preset=angular-standalone

Want a monorepo instead?

You can use the --preset=angular-monorepo to start with a monorepo structure. Note, however, that you can start simple and migrate to a monorepo later.

The single-project workspace setup follows a similar structure to what the Angular CLI generates.

1โ””โ”€ myngapp 2 โ”œโ”€ ... 3 โ”œโ”€ src 4 โ”‚ โ”œโ”€ app 5 โ”‚ โ”‚ โ”œโ”€ app.component.css 6 โ”‚ โ”‚ โ”œโ”€ app.component.html 7 โ”‚ โ”‚ โ”œโ”€ app.component.spec.ts 8 โ”‚ โ”‚ โ”œโ”€ app.component.ts 9 โ”‚ โ”‚ โ””โ”€ app.module.ts 10 โ”‚ โ”œโ”€ assets 11 โ”‚ โ”œโ”€ favicon.ico 12 โ”‚ โ”œโ”€ index.html 13 โ”‚ โ”œโ”€ main.ts 14 โ”‚ โ””โ”€ styles.css 15 โ”œโ”€ nx.json 16 โ”œโ”€ package.json 17 โ”œโ”€ project.json 18 โ”œโ”€ ... 19

project.json vs angular.json

Nx configures projects and their targets in a format similar to angular.json. However, instead of storing the configuration for every project in a single large angular.json file at the root, the configuration is split into multiple project.json files, one for each project.

Smaller, focused config files allow you to quickly find the relevant configuration for the project you are working on, and editing a single project configuration does not cause the nx affected command to rerun all the tests in the repo. This conversion is done automatically when you run nx init.

Note that even though the configuration is split, everything works similarly. Migrations and schematics written with the Angular devkit that expect a single angular.json file will receive a single file. Nx is smart, so it merges all the files in memory to make those migrations and schematics work.

More details: Nx project configuration.

Executors vs. Builders, Generators vs. Schematics

Nx comes with slightly different terminology than the Angular CLI for some features.

Angular Builders are called Executors in Nx but work very much similarly. You use them in your project configuration to define how to build, test, lint, and serve your project. You can use both Nx executors from Nx Plugins or Angular Builders from the Angular Devkit.

1{ 2 "name": "myngapp", 3 ... 4 "targets": { 5 "build": { 6 "executor": "@angular-devkit/build-angular:browser", 7 ... 8 }, 9 ... 10 } 11} 12

Angular Schematics are called Generators in Nx. You can invoke them in the same way as you would with the Angular CLI, but you use the nx command instead of ng:

โฏ

npx nx g @nx/angular:component my-component

You can also run Angular Schematics through the Nx CLI. So something like this works as well:

โฏ

npx nx g @schematics/angular:component my-component

Important

Support to run Angular Devkit builders and schematics is enabled by installing the @nx/angular plugin. This plugin is installed by default when creating a new Angular workspace with Nx or migrate an existing Angular CLI workspace to Nx.

Running Commands

Commands are run in the very same way as with the Angular CLI. You just switch ng with nx. For example:

โฏ

npx nx serve

Nx has more abilities to run commands in parallel, just for specific projects etc. Find out more in the docs.

Integrating with Modern Tools

An Angular-based Nx Workspace already comes with a lot of batteries included:

But Nx expands beyond just that, offering automated integration with a lot of modern tools such as Storybook or Tailwind just to mention a few.

'ng update' vs. 'nx migrate'

Like the Angular CLI, Nx has a command that allows you to upgrade your existing workspace tools, packages, and source code to the next version. Instead of ng update, you run nx migrate:

โฏ

npx nx migrate latest

What's the difference?

nx migrate is a much-improved version of ng update. It runs the same migrations but allows you to:

nx migrate does this by splitting the process into two steps. nx migrate latest creates a migrations.json file with a list of all the migrations needed by Nx, Angular, and other packages. You can then modify that file before running nx migrate --run-migrations to execute those migrations.

To reiterate: nx migrate runs the migrations written by the Angular team the same way ng update runs them. So everything should still work. You just get more control over how it works. You can learn more in our docs about Automate Updating Dependencies.

'nx add'

The nx add command is similar to the ng add command. It installs a given package specifier (e.g. @nx/react, @nx/react@18.1.0, @nx/react@latest) and it runs an init or ng-add generator if the installed package contains it.

โฏ

nx add [package]

The command was introduced in Nx 17.3.0. If you're using an older version, you can instead run:

โฏ

npm add [package]

โฏ

nx g [package]:ng-add

Replace [package] with the package name you're trying to add.

Speed

Nx is designed to be fast. The Angular CLI leverages Webpack's caching, which Nx also does since it relies on the Angular Devkit when it comes to compiling or running apps. But Nx goes way beyond that, introducing features vital for a fast CI experience, mainly when you have a monorepo.

Features like

And, Nx already uses fast, modern tooling like ESBuild, Vite, Vitest and Rspack for non-Angular stacks. So once Angular is ready to use these tools, Nx will also be ready.

Editor Integration

Nx goes beyond being just a CLI and comes with Nx Console, a VSCode and WebStorm extension allowing you to run commands, generate code and visualize your workspace.

Nx Console screenshot

Scaling: Start Simple, Grow to a Monorepo

Nx is really made to scale with you. You can

Visualize your Workspace

As you start modularizing your Angular workspace, Nx can visualize it using the nx graph command or via Nx Console directly in your editor.

Loading...

Learn more about the graph features here.

Extensible and Customizable: Make it fit your own needs

Nx is built to be extensible. Just like the packages published by the Nx core team you can create your own Nx plugins by extending Nx. This can be as simple as using run-commands to integrate custom commands into the project configuration or as complex as creating your own local executor.

And if you ever need to expand beyond Angular or diversify your stack, you can still keep using Nx, which is battle-tested with many different technologies.

Migrate from the Angular CLI?

Migrating an Angular CLI project to Nx can be done by running

โฏ

npx nx@latest init

or alternatively using the --integrated flag if you want to create an Nx monorepo right away. Learn more about all the details on the dedicated docs page.

There is also a guide describing how to consolidate multiple Angular CLI projects into a single Nx monorepo.

You can learn more about Angular & Nx by following our dedicated tutorials: