codecamp

npm 添加用户 adduser

添加注册用户账户。

概要

npm adduser [--registry=url] [--scope=@orgname] [--always-auth] [--auth-type=legacy]


aliases: login, add-user

详情

在指定注册表中创建或验证名为<username>的用户,并将凭据保存在到 .npmrc 文件中。如果未指定注册表,则使用默认注册表。(请参考配置

从提示中读取用户名、密码和电子邮件。

想要重置密码。可以访问这里

想要更改你的电子邮件地址,可以访问这里

你可以使用统一用户账户多次使用此命令在新机器上授权。在新机器上进行身份验证时,用户名、密码和电子邮件地址都必须与你现有的记录匹配。

npm login 是一个 adduser 的别名,其行为方式完全相同。

配置

registry 注册表

  • 默认值:http://registry.npmjs.org/
  • 类型: Url

npm 包注册表的基本 URL。

scope 范围

  • 默认值:当前项目的范围(如果有),或 ""
  • 类型:String

将操作与作用域注册表的作用域相关联。

登录或注销专用注册表时非常有用:

## log in, linking the scope to the custom registry
npm login --scope=@mycorp --registry=https://registry.mycorp.com
## log out, removing the link and the auth token
npm logout --scope=@mycorp

这将导致@mycorp映射到注册表,以便将来安装根据@mycorp/package模式指定的包。

这还将导致npm init创建一个范围包。

## accept all defaults, and create a package named "@foo/whatever",
## instead of just named "whatever"
npm init --scope=@foo --yes
npm 访问权限 access
npm 审计 audit
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }