npm-profile

更改注册表配置文件上的设置

选择 CLI 版本

摘要

npm profile enable-2fa [auth-only|auth-and-writes]
npm profile disable-2fa
npm profile get [<key>]
npm profile set <key> <value>

注意:此命令不了解工作区。

描述

更改注册表上的个人资料信息。请注意,此命令依赖于注册表实现,因此第三方注册表可能不支持此接口。

  • npm profile get [<property>]:显示个人资料的所有属性,或一个或多个特定属性。它看起来像
+-----------------+---------------------------+
| name | example |
+-----------------+---------------------------+
| email | [email protected] (verified) |
+-----------------+---------------------------+
| two factor auth | auth-and-writes |
+-----------------+---------------------------+
| fullname | Example User |
+-----------------+---------------------------+
| homepage | |
+-----------------+---------------------------+
| freenode | |
+-----------------+---------------------------+
| twitter | |
+-----------------+---------------------------+
| github | |
+-----------------+---------------------------+
| created | 2015-02-26T01:38:35.892Z |
+-----------------+---------------------------+
| updated | 2017-10-02T21:29:45.922Z |
+-----------------+---------------------------+
  • npm profile set <property> <value>:设置个人资料属性的值。您可以通过这种方式设置以下属性:电子邮件、姓名、主页、freenode、twitter、github

  • npm profile set password:更改您的密码。这是交互式的,系统将提示您输入当前密码和新密码。如果您启用了双因素身份验证,系统还会提示您输入 OTP。

  • npm profile enable-2fa [auth-and-writes|auth-only]:启用双因素身份验证。默认为 auth-and-writes 模式。模式为

    • auth-only:登录或更改帐户身份验证时需要 OTP。网站和命令行都需要 OTP。
    • auth-and-writes:在 auth-only 的所有时间都需要 OTP,以及发布模块、设置 latest dist-tag 或通过 npm accessnpm owner 更改访问权限时也需要 OTP。
  • npm profile disable-2fa:禁用双因素身份验证。

详情

某些命令可能在非 npmjs.com 注册表上不可用。

配置

注册表

npm 注册表的基本 URL。

json

  • 默认值:false
  • 类型:布尔值

是否输出 JSON 数据,而不是正常输出。

  • npm pkg set 中,它在将设置值保存到您的 package.json 之前启用使用 JSON.parse() 解析设置值。

并非所有 npm 命令都支持。

可解析

  • 默认值:false
  • 类型:布尔值

从写入标准输出的命令输出可解析的结果。对于 npm search,这将是制表符分隔的表格格式。

otp

  • 默认值:null
  • 类型:null 或字符串

这是来自双因素身份验证器的一次性密码。在使用 npm access 发布或更改包权限时需要它。

如果未设置,并且注册表响应因一次性密码挑战而失败,npm 将在命令行上提示输入一次性密码。

另请参阅