1
npm config set <key> <value>
和
npm set <key> <value>
的代名詞?兩者的這個NPM的init
配置命令,添加初始化配置/home/.npmrc
npm config set init.author.name 'Some One'
npm set init.author.email '[email protected]
npm config set <key> <value>
和
npm set <key> <value>
的代名詞?兩者的這個NPM的init
配置命令,添加初始化配置/home/.npmrc
npm config set init.author.name 'Some One'
npm set init.author.email '[email protected]
他們是同義的。
在GitHub上檢查NPM的源代碼:set
命令的代碼很短並且要求config
的set
。
https://github.com/npm/npm/blob/master/lib/set.js
module.exports = set
set.usage = 'npm set <key> <value> (See `npm config`)'
var npm = require('./npm.js')
set.completion = npm.commands.config.completion
function set (args, cb) {
if (!args.length) return cb(set.usage)
npm.commands.config(['set'].concat(args), cb)
}
config
命令:https://github.com/npm/npm/blob/master/lib/config.js