# npm profile

更改注册中心配置文件的设置

# 概要

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           | me@example.com (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 password: 改变你的密码。这是交互式的,系统会提示您输入当前密码和新密码。如果启用了双重身份验证,还会提示您输入 OTP。

  • npm profile enable-2fa [auth-and-writes|auth-only]: 使双重身份验证。默认为 auth-and-write 模式。模式是:

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

# 细节

其中一些命令在非 npmjs.com 注册中心上可能不可用。

# 配置

# registry

  • Default: "https://registry.npmjs.org/"
  • Type: URL

npm 注册中心的基本 URL。

# json

  • Default: false
  • Type: Boolean

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

  • npm pkg set 支持使用 JSON.parse() 解析集合值,然后保存到你的 package.json

并非所有 npm 命令都支持。

# parseable

  • Default: false
  • Type: Boolean

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

# otp

  • Default: null
  • Type: null or String

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

如果没有设置,注册中心响应会失败,并要求输入一次性密码,npm 将在命令行提示输入密码。

Last Updated: 4/25/2023, 9:49:29 AM