NPM-配置
NPM-配置
管理npm配置文件
概要
npm config set <key> <value> [-g|--global]
npm config get <key>
npm config delete <key>
npm config list [-l] [--json]
npm config edit
npm get <key>
npm set <key> <value> [-g|--global]
aliases: c
描述
npm从命令行,环境变量,npmrc
文件以及某些情况下的package.json
文件中获取其配置设置。
有关npmrc文件的更多信息,请参见 npmrc
。
请参阅有关npm-config
所涉及机制的更全面的讨论。
该npm config
命令可用于更新和编辑用户和全局npmr
c文件的内容。
子命令
Config 支持以下子命令:
组
npm config set key value
将配置键设置为值。
如果省略 value,则将其设置为 “true” 。
得到
npm config get key
将配置值回显到 stdout 。
名单
npm config list
显示所有配置设置。用于-l
显示默认值。用于--json
以 json 格式显示设置。
删除
npm config delete key
从所有配置文件中删除密钥。
编辑
npm config edit
在编辑器中打开配置文件。使用该--global
标志编辑全局配置。