The Wayback Machine - https://web.archive.org./web/20220306020408/https://github.com/npm/cli/commit/6b68c1aaa282205eb4d47dbc81909c11851f7e06
Skip to content
Permalink
Browse files
docs: auto-generate npm usage for each command (#4450)
Closes #4189

* docs: auto-generate synopsis sections
* feat: improve usage auto-generation'
* chore: auto-generate npm usage for each command
* docs: print default usage when usage is missing
* docs: add special case for npx
* fix: remove optional chaining
  • Loading branch information
manekinekko committed Feb 24, 2022
1 parent d438d61 commit 6b68c1aaa282205eb4d47dbc81909c11851f7e06
Showing with 821 additions and 164 deletions.
  1. +9 −3 docs/content/commands/npm-access.md
  2. +10 −1 docs/content/commands/npm-adduser.md
  3. +10 −4 docs/content/commands/npm-audit.md
  4. +10 −1 docs/content/commands/npm-bin.md
  5. +11 −2 docs/content/commands/npm-bugs.md
  6. +16 −8 docs/content/commands/npm-cache.md
  7. +11 −0 docs/content/commands/npm-ci.md
  8. +10 −1 docs/content/commands/npm-completion.md
  9. +9 −2 docs/content/commands/npm-config.md
  10. +28 −2 docs/content/commands/npm-dedupe.md
  11. +10 −1 docs/content/commands/npm-deprecate.md
  12. +9 −4 docs/content/commands/npm-diff.md
  13. +10 −1 docs/content/commands/npm-dist-tag.md
  14. +10 −1 docs/content/commands/npm-docs.md
  15. +9 −0 docs/content/commands/npm-doctor.md
  16. +10 −1 docs/content/commands/npm-edit.md
  17. +9 −12 docs/content/commands/npm-exec.md
  18. +9 −0 docs/content/commands/npm-explain.md
  19. +9 −0 docs/content/commands/npm-explore.md
  20. +11 −0 docs/content/commands/npm-find-dupes.md
  21. +10 −2 docs/content/commands/npm-fund.md
  22. +9 −0 docs/content/commands/npm-help-search.md
  23. +11 −0 docs/content/commands/npm-help.md
  24. +11 −2 docs/content/commands/npm-hook.md
  25. +14 −4 docs/content/commands/npm-init.md
  26. +10 −1 docs/content/commands/npm-install-ci-test.md
  27. +26 −11 docs/content/commands/npm-install-test.md
  28. +25 −13 docs/content/commands/npm-install.md
  29. +18 −4 docs/content/commands/npm-link.md
  30. +10 −1 docs/content/commands/npm-logout.md
  31. +10 −1 docs/content/commands/npm-ls.md
  32. +14 −3 docs/content/commands/npm-org.md
  33. +9 −0 docs/content/commands/npm-outdated.md
  34. +10 −1 docs/content/commands/npm-owner.md
  35. +10 −1 docs/content/commands/npm-pack.md
  36. +10 −1 docs/content/commands/npm-ping.md
  37. +12 −3 docs/content/commands/npm-pkg.md
  38. +9 −0 docs/content/commands/npm-prefix.md
  39. +12 −4 docs/content/commands/npm-profile.md
  40. +10 −1 docs/content/commands/npm-prune.md
  41. +10 −4 docs/content/commands/npm-publish.md
  42. +9 −0 docs/content/commands/npm-rebuild.md
  43. +9 −0 docs/content/commands/npm-repo.md
  44. +9 −0 docs/content/commands/npm-restart.md
  45. +10 −1 docs/content/commands/npm-root.md
  46. +10 −3 docs/content/commands/npm-run-script.md
  47. +10 −1 docs/content/commands/npm-search.md
  48. +9 −0 docs/content/commands/npm-set-script.md
  49. +9 −0 docs/content/commands/npm-shrinkwrap.md
  50. +9 −0 docs/content/commands/npm-star.md
  51. +10 −0 docs/content/commands/npm-stars.md
  52. +9 −0 docs/content/commands/npm-start.md
  53. +9 −0 docs/content/commands/npm-stop.md
  54. +13 −6 docs/content/commands/npm-team.md
  55. +10 −1 docs/content/commands/npm-test.md
  56. +13 −3 docs/content/commands/npm-token.md
  57. +17 −5 docs/content/commands/npm-uninstall.md
  58. +9 −0 docs/content/commands/npm-unstar.md
  59. +29 −2 docs/content/commands/npm-update.md
  60. +11 −4 docs/content/commands/npm-version.md
  61. +11 −2 docs/content/commands/npm-view.md
  62. +10 −1 docs/content/commands/npm-whoami.md
  63. +2 −3 docs/content/commands/npm.md
  64. +11 −13 docs/content/commands/npx.md
  65. +93 −18 scripts/config-doc-command.js
@@ -6,21 +6,27 @@ description: Set access level on published packages

### Synopsis

<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/access.js -->

```bash
npm access public [<package>]
npm access restricted [<package>]
npm access grant <read-only|read-write> <scope:team> [<package>]
npm access revoke <scope:team> [<package>]
npm access 2fa-required [<package>]
npm access 2fa-not-required [<package>]
npm access ls-packages [<user>|<scope>|<scope:team>]
npm access ls-collaborators [<package> [<user>]]
npm access edit [<package>]
```
<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/access.js -->
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
### Description
Used to set access controls on private packages.
@@ -6,12 +6,21 @@ description: Add a registry user account

### Synopsis

<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/adduser.js -->

```bash
npm adduser [--registry=url] [--scope=@orgname] [--auth-type=legacy]
npm adduser
aliases: login, add-user
```

<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/adduser.js -->

<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->

Note: This command is unaware of workspaces.

### Description
@@ -6,13 +6,19 @@ description: Run a security audit

### Synopsis

```bash
npm audit [--json] [--production] [--audit-level=(low|moderate|high|critical)]
npm audit fix [--force|--package-lock-only|--dry-run|--production|--only=(dev|prod)]
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/audit.js -->

common options: [--production] [--only=(dev|prod)]
```bash
npm audit [fix]
```

<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/audit.js -->

<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->

### Description

The audit command submits a description of the dependencies configured in
@@ -6,10 +6,19 @@ description: Display npm bin folder

### Synopsis

<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/bin.js -->

```bash
npm bin [-g|--global]
npm bin
```

<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/bin.js -->

<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->

Note: This command is unaware of workspaces.

### Description
@@ -6,12 +6,21 @@ description: Report bugs for a package in a web browser

### Synopsis

<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/bugs.js -->

```bash
npm bugs [<pkgname> [<pkgname> ...]]
npm bugs [<pkgname>]
aliases: issues
alias: issues
```

<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/bugs.js -->

<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->

### Description

This command tries to guess at the likely location of a package's bug
@@ -6,18 +6,26 @@ description: Manipulates packages cache

### Synopsis

```bash
npm cache add <tarball file>...
npm cache add <folder>...
npm cache add <tarball url>...
npm cache add <name>@<version>...
npm cache clean
aliases: npm cache clear, npm cache rm
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/cache.js -->

```bash
npm cache add <tarball file>
npm cache add <folder>
npm cache add <tarball url>
npm cache add <git url>
npm cache add <name>@<version>
npm cache clean [<key>]
npm cache ls [<name>@<version>]
npm cache verify
```

<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/cache.js -->

<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->

Note: This command is unaware of workspaces.

### Description
@@ -6,10 +6,21 @@ description: Install a project with a clean slate

### Synopsis

<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/ci.js -->

```bash
npm ci
aliases: clean-install, ic, install-clean, isntall-clean
```

<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/ci.js -->

<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->

### Description

This command is similar to [`npm install`](/commands/npm-install), except
@@ -6,10 +6,19 @@ description: Tab Completion for npm

### Synopsis

<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/completion.js -->

```bash
source <(npm completion)
npm completion
```

<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/completion.js -->

<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->

Note: This command is unaware of workspaces.

### Description
@@ -6,18 +6,25 @@ description: Manage the npm configuration files

### Synopsis

<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/config.js -->

```bash
npm config set <key>=<value> [<key>=<value> ...]
npm config get [<key> [<key> ...]]
npm config delete <key> [<key> ...]
npm config list [--json]
npm config edit
npm set <key>=<value> [<key>=<value> ...]
npm get [<key> [<key> ...]]
alias: c
```
<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/config.js -->
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
Note: This command is unaware of workspaces.
### Description
@@ -6,13 +6,21 @@ description: Reduce duplication in the package tree

### Synopsis

<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/dedupe.js -->

```bash
npm dedupe
npm ddp
aliases: ddp
alias: ddp
```

<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/dedupe.js -->

<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->

### Description

Searches the local package tree and attempts to simplify the overall
@@ -145,6 +153,24 @@ When package package-locks are disabled, automatic pruning of extraneous
modules will also be disabled. To remove extraneous modules with
package-locks disabled use `npm prune`.
This configuration does not affect `npm ci`.
<!-- automatically generated, do not edit manually -->
<!-- see lib/utils/config/definitions.js -->
#### `save`
* Default: `true` unless when using `npm update` or `npm dedupe` where it
defaults to `false`
* Type: Boolean
Save installed packages to a `package.json` file as dependencies.
When used with the `npm rm` command, removes the dependency from
`package.json`.
Will also prevent writing to `package-lock.json` if set to `false`.
<!-- automatically generated, do not edit manually -->
<!-- see lib/utils/config/definitions.js -->
@@ -6,10 +6,19 @@ description: Deprecate a version of a package

### Synopsis

<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/deprecate.js -->

```bash
npm deprecate <pkg>[@<version range>] <message>
npm deprecate <pkg>[@<version>] <message>
```

<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/deprecate.js -->

<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->

Note: This command is unaware of workspaces.

### Description
@@ -6,14 +6,19 @@ description: The registry diff command

### Synopsis

<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/diff.js -->

```bash
npm diff [...<paths>]
npm diff --diff=<pkg-name> [...<paths>]
npm diff --diff=<version-a> [--diff=<version-b>] [...<paths>]
npm diff --diff=<spec-a> [--diff=<spec-b>] [...<paths>]
npm diff [--diff-ignore-all-space] [--diff-name-only] [...<paths>]
```

<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/diff.js -->

<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->

### Description

Similar to its `git diff` counterpart, this command will print diff patches
@@ -6,14 +6,23 @@ description: Modify package distribution tags

### Synopsis

<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/dist-tag.js -->

```bash
npm dist-tag add <pkg>@<version> [<tag>]
npm dist-tag rm <pkg> <tag>
npm dist-tag ls [<pkg>]
aliases: dist-tags
alias: dist-tags
```

<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/dist-tag.js -->

<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->

### Description

Add, remove, and enumerate distribution tags on a package:
@@ -6,12 +6,21 @@ description: Open documentation for a package in a web browser

### Synopsis

<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/docs.js -->

```bash
npm docs [<pkgname> [<pkgname> ...]]
aliases: home
alias: home
```
<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/docs.js -->
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
### Description
This command tries to guess at the likely location of a package's
@@ -6,10 +6,19 @@ description: Check your npm environment

### Synopsis

<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/doctor.js -->

```bash
npm doctor
```

<!-- automatically generated, do not edit manually -->
<!-- see lib/commands/doctor.js -->

<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->

Note: This command is unaware of workspaces.

### Description

0 comments on commit 6b68c1a

Please sign in to comment.