42 lines
672 B
Markdown
42 lines
672 B
Markdown
# list
|
|
|
|
Lists installed plugins, capabilities of installed plugins and other available plugins.
|
|
|
|
## Usage
|
|
|
|
```bash
|
|
nx list
|
|
```
|
|
|
|
Install `@nrwl/cli` globally to invoke the command directly using `nx`, or use `npm run nx` or `yarn nx`.
|
|
|
|
### Examples
|
|
|
|
List the plugins installed in the current workspace:
|
|
|
|
```bash
|
|
nx list
|
|
```
|
|
|
|
List the schematics and builders available in the `@nrwl/web` plugin if it is installed (If the plugin is not installed `nx` will show advice on how to add it to your workspace):
|
|
|
|
```bash
|
|
nx list @nrwl/web
|
|
```
|
|
|
|
## Options
|
|
|
|
### help
|
|
|
|
Show help
|
|
|
|
### plugin
|
|
|
|
Default: `null`
|
|
|
|
The name of an installed plugin to query
|
|
|
|
### version
|
|
|
|
Show version number
|