* feat(core): add nx graph as alias of nx dep-graph * docs(core): add note about old dep-graph syntax * cleanup(core): formatting * feat(core): formatting * feat(core): formatting Co-authored-by: Isaac Mann <isaacplmann+git@gmail.com>
2.0 KiB
| 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
Default: false
Watch for changes to project graph and update in-browser