* docs(nxdev): restructure docs to diataxis style * docs(nxdev): cleanup * docs(nxdev): fix links * chore(nxdev): format * docs(nxdev): fix broken images * docs(nxdev): fix links * docs(nxdev): fix links * docs(nxdev): fix links * docs(nxdev): tweaks * docs(nxdev): redirect rules * docs(nxdev): fixes
51 lines
850 B
Markdown
51 lines
850 B
Markdown
---
|
|
title: 'list - CLI command'
|
|
description: 'Lists installed plugins, capabilities of installed plugins and other available plugins.'
|
|
---
|
|
|
|
# list
|
|
|
|
Lists installed plugins, capabilities of installed plugins and other available plugins.
|
|
|
|
## Usage
|
|
|
|
```bash
|
|
nx list [plugin]
|
|
```
|
|
|
|
Install `nx` globally to invoke the command directly using `nx`, or use `npx nx`, `yarn nx`, or `pnpx nx`.
|
|
|
|
### Examples
|
|
|
|
List the plugins installed in the current workspace:
|
|
|
|
```bash
|
|
nx list
|
|
```
|
|
|
|
List the generators and executors 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
|
|
|
|
Type: boolean
|
|
|
|
Show help
|
|
|
|
### plugin
|
|
|
|
Type: string
|
|
|
|
The name of an installed plugin to query
|
|
|
|
### version
|
|
|
|
Type: boolean
|
|
|
|
Show version number
|