Nx CLI

The Nx CLI is a command-line interface tool that helps you setup, develop, build, and maintain applications. It provides commands for:

  • Generating new applications, and libraries with recommended defaults.
  • Running a development webserver that rebuilds your app on changes.
  • Generating a dependency graph for your application.
  • Building, and running unit and E2E test for apps, and libraries affected by your changes.
  • Formatting your source code to modern standards.
  • ...

Installing the CLI

Install the Nx CLI globally on your system using your preferred package manager:

Using npm:

npm install -g nx

Using yarn:

yarn global add nx

After that, you will have an nx executable you can use to run commands in your workspace.

If you don't have the Nx CLI installed globally, you can invoke nx using yarn nx and npm run nx.

Help and List

nx help will print a short description of every command. You can also pass --help to a command to see the available options (e.g., nx affected --help).

nx list will print the list of installed plugins and the list of plugins you can install. You can also pass a plugin name to it (e.g., nx list @nrwl/react) to learn more about what the capabilities of that plugin.

Generating Code

The Nx CLI has an advanced code generator. With it, you can generate new applications, libraries, components, state management utilities. You can change existing applications. And, because the Nx CLI comes with an implementation of a virtual file system, you can preview the changes without affecting anything on disk.

The code generation recipes are called generators. Generators provide the underlying APIs for scaffolding, and utilities to automate changes to your filesystem. The example below is the command to generate a new application.

1nx generate @nrwl/react:application myapp

The @nrwl/react package contains a collection of generators, with application being the one used in this example. The Nx CLI applies the generator to your workspace, verifying that the provided options are valid, and the destination files don't already exist. Once the validations are passed, the new files are generated, or existing files are updated. You can also customize the output of the generated application, by passing options to the generator.

1nx generate @nrwl/react:application myapp --style=scss

You can preview the changes a generator makes by using the --dry-run option. It will output the potential files created, and/or updated during the execution of the generator.

Generate command:

nx generate runs generators to create or modify code given some inputs from the developer.

  • nx generate
    Syntax: nx generate [plugin]:[generator-name] [options]
    Example: nx generate @nrwl/react:component mycmp --project=myapp

Running Tasks

The Nx CLI uses executors to perform tasks, such as building and bundling your application, running unit tests, or running E2E tests against a specific target, whether that be an application or workspace.

You can configure the executors in workspace.json.

1{
2  "projects": {
3    "todos": {
4      "root": "apps/todos/",
5      "sourceRoot": "apps/todos/src",
6      "projectType": "application",
7      "targets": {
8        "serve": {
9          "executor": "@nrwl/web:dev-server",
10          "options": {
11            "buildTarget": "todos:build",
12            "proxyConfig": "apps/todos/proxy.conf.json"
13          },
14          "configurations": {
15            "production": {
16              "buildTarget": "todos:build:production"
17            }
18          }
19        },
20        "test": {
21          "executor": "@nrwl/jest:jest",
22          "options": {
23            "jestConfig": "apps/todos/jest.config.js",
24            "tsConfig": "apps/todos/tsconfig.spec.json",
25            "setupFile": "apps/todos/src/test-setup.ts"
26          }
27        }
28      }
29    }
30  }
31}

In the example above, the todos application has two targets: serve and test. The serve target uses the @nrwl/web:dev-server executor, and the test target uses @nrwl/jest:jest. Every target uses an executor which actually runs this target. So targets are analogous to typed npm scripts, and executors are analogous to typed shell scripts.

You can run the target as follows:

nx run todos:serve
nx run todos:test

A target can have multiple configuration. In the example above the serve target has two configurations: default and production.

nx run todos:serve # default configuration
nx run todos:serve:production # production configuration

Because running target is such a common operation, you can also use the following syntax to do it:

nx serve todos
nx serve todos --configuration=production
nx serve todos --prod

You can name your targets any way you want, define as many of them as you want, and use any executors you want to implement them.

These are some common targets:

  • nx build
    Syntax: nx build [project]
    Long form: nx run [project]:build
    Example: nx build my-app
  • nx lint
    Syntax: nx lint [project]
    Long form: nx run [project]:lint
    Example: nx lint my-app
  • nx serve
    Syntax: nx serve [project]
    Long form: nx run [project]:serve
    Example: nx serve my-app
  • nx e2e
    Syntax: nx e2e [project]
    Long form: nx run [project]:e2e
    Example: nx e2e my-app
  • nx test
    Syntax: nx test [project]
    Long form: nx run [project]:test
    Example: nx test my-app

Running Tasks for Multiple Projects

Nx allows you to run tasks across multiple projects.

Run-Many

Run the same target for all projects.

1nx run-many --target=build --all

Run the same target for all projects in parallel.

1nx run-many --target=build --all --parallel --maxParallel=8

Run the same target for selected projects.

1nx run-many --target=build --projects=app1,app2

Run the same target for selected projects and their deps.

1nx run-many --target=build --projects=app1,app2 --with-deps

Run the same target for the projects that failed last time.

1nx run-many --target=build --all --only-failed

Any flags you pass to run-many that aren't Nx specific will be passed down to the executor.

1nx run-many --target=build --all --prod

Affected

Run the same target for all the projects by the current code change (e.g., current Git branch).

1nx affected --target=build

Same but in parallel.

1nx affected --target=build --parallel --maxParallel=8

By default, the current code change is defined as a diff between master and HEAD. You can change it as follows:

1nx affected --target=build --parallel --maxParallel=8 --base=origin/development --head=$CI_BRANCH_NAME

Running affected commands is very common, so Nx comes with a few shortcuts.

1nx affected:build
2nx affected:test
3nx affected:lint
4nx affected:e2e

Any flags you pass to run-many that aren't Nx specific will be passed down to the executor.

1nx affected --target=build --prod

Other Commands

nx print-affected prints information about affected projects in the workspace.

nx dep-graph launches a visual graph of the dependencies between your projects.

nx affected:dep-graph launches the dependency graph with all affected projects highlighted.

nx list lists all installed and available plugins.

nx report prints basic information about the plugins used

nx format:write formats your code

nx format:check checks that your code is formatted