1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 09:02:08 +02:00
tldr/pages/common/npm-adduser.md
2024-10-30 06:09:12 +01:00

546 B

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}}