mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-05 07:44:10 +00:00
26 lines
639 B
Plaintext
26 lines
639 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# npm adduser
|
|
|
|
> Add a registry user account.
|
|
> More information: <https://docs.npmjs.com/cli/npm-adduser>.
|
|
|
|
- Create a new user in the specified registry and save credentials to `.npmrc`:
|
|
|
|
`npm adduser --registry={{registry_url}}`
|
|
|
|
- Log in to a private registry with a specific scope:
|
|
|
|
`npm login --scope={{@mycorp}} --registry={{https://registry.mycorp.com}}`
|
|
|
|
- Log out from a specific scope and remove the auth token:
|
|
|
|
`npm logout --scope={{@mycorp}}`
|
|
|
|
- Create a scoped package during initialization:
|
|
|
|
`npm init --scope={{@foo}} {{--yes}}`
|