A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://nx.dev/reference/nx-commands below:

Website Navigation


Nx Commands | Nx

The Nx CLI provides many commands. They are organized here into commands that:

There is also a section for separate commands that can create a new Nx workspace for you.

Parsing Nx Commands

If the command that you pass to Nx is not one of the keywords listed below, it will try to interpret the command as if it were a task. So Nx will parse your command in the following ways and execute the first syntax that is valid.

  1. nx [built-in-command] [...arguments]
  2. nx [task-name-for-root-project] [...arguments]
  3. nx [task-name] [project-name] [...arguments]

These commands modify your codebase in some way.

init

Adds Nx to any type of workspace. It installs nx, creates an nx.json configuration file and optionally sets up remote caching.

add

Install a plugin and initialize it.

generate

Runs a generator that creates and/or modifies files based on a generator from a plugin.

nx generate @nx/react:component libs/my-lib/src/lib/my-component

migrate

Creates a migrations file or runs migrations from the migrations file.

nx migrate --run-migrations

import

Import code and git history from another repository into this repository.

nx import https://github.com/myorg/inventory-app.git apps/inventory

nx import ../inventory-app apps/inventory

repair

Repair any configuration that is no longer supported by Nx.

Specifically, this will run every migration within the nx package against the current repository. Doing so should fix any configuration details left behind if the repository was previously updated to a new Nx version without using nx migrate.

If your repository has only ever updated to newer versions of Nx with nx migrate, running nx repair should do nothing.

sync

Run all sync generators

format

Overwrite un-formatted files or check for un-formatted files

These commands run tasks on your code.

run

Run a target for a project

run-many

Run target for multiple listed projects

nx run-many --target=build

affected

Run target for affected projects

nx affected --target=build

exec

Executes any command as if it was a target on the project

package.json

{ "scripts": { "build": "nx exec -- node ./my-custom-build.js" } }

watch

Watch for changes within projects, and execute commands

nx watch --projects=assets -- nx build assets

release

Orchestrate versioning and publishing of applications and libraries

reset

Clears cached Nx artifacts and metadata about the workspace and shuts down the Nx Daemon.

show

Show information about the workspace (e.g., list of projects)

graph

Graph dependencies within workspace

list

Lists installed plugins, capabilities of installed plugins and other available plugins.

report

Reports useful version numbers to copy into the Nx issue template

daemon

Prints information about the Nx Daemon process or starts a daemon process

mcp

Starts the Nx MCP server for exposing Nx tools to various AI systems (VSCode, Cursor, Claude, ...)

connect

Connect an Nx workspace to Nx Cloud

login

Login to Nx Cloud. This command is an alias for nx-cloud login.

logout

Logout from Nx Cloud. This command is an alias for nx-cloud logout.

record

Records command execution for distributed task execution. This command is an alias for nx-cloud record.

nx record -- nx run my-app:build

start-ci-run

Starts a new CI run for distributed task execution. This command is an alias for nx-cloud start-ci-run.

fix-ci

Fixes CI failures with AI-powered suggestions. This command is an alias for nx-cloud fix-ci.

create-nx-workspace

Create a new Nx workspace

npx create-nx-workspace

create-nx-plugin

Create a new Nx workspace with a preset designed for writing an Nx plugin


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4