1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-14 18:15:55 +02:00
tldr/pages/common/npm-token.md
ashborn 52d732207c
npm-token: add page (#14250)
Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
2024-10-17 15:40:18 +02:00

32 lines
672 B
Markdown

# npm token
> Manage and generate authentication tokens for the npm registry.
> More information: <https://docs.npmjs.com/cli/commands/npm-token>.
- Create a new authentication token:
`npm token create`
- List all tokens associated with an account:
`npm token list`
- Delete a specific token using its token ID:
`npm token revoke {{token_id}}`
- Create a token with read-only access:
`npm token create --read-only`
- Create a token with publish access:
`npm token create --publish`
- Automatically configure an npm token in your global .npmrc file when you log in:
`npm login`
- Remove a token from the global configuration:
`npm token revoke {{token_id}}`