Skip to content

Latest commit

 

History

History
110 lines (66 loc) · 2 KB

graph.md

File metadata and controls

110 lines (66 loc) · 2 KB
title description
graph - CLI command
Graph dependencies within workspace. Alias: dep-graph

graph

Graph dependencies within workspace. Alias: dep-graph

Usage

nx graph

Install nx globally to invoke the command directly using nx, or use npx nx, yarn nx, or pnpx nx.

Examples

Open the project graph of the workspace in the browser:

nx graph

Save the project graph into a json file:

nx graph --file=output.json

Generate a static website with project graph into an html file, accompanied by an asset folder called static:

nx graph --file=output.html

Show the graph where every node is either an ancestor or a descendant of todos-feature-main:

nx graph --focus=todos-feature-main

Include project-one and project-two in the project graph:

nx graph --include=project-one,project-two

Exclude project-one and project-two from the project graph:

nx graph --exclude=project-one,project-two

Show the graph where every node is either an ancestor or a descendant of todos-feature-main, but exclude project-one and project-two:

nx graph --focus=todos-feature-main --exclude=project-one,project-two

Watch for changes to project graph and update in-browser:

nx graph --watch

Options

exclude

List of projects delimited by commas to exclude from the project graph.

file

Output file (e.g. --file=output.json or --file=dep-graph.html)

focus

Use to show the project graph for a particular project and every node that is either an ancestor or a descendant.

groupByFolder

Group projects by folder in the project graph

help

Show help

host

Bind the project graph server to a specific ip address.

open

Default: true

Open the project graph in the browser.

port

Bind the project graph server to a specific port.

version

Show version number

watch

Watch for changes to project graph and update in-browser