vue -V
发生过程
入口文件
文件路径:/packages/@vue/cli/bin/vue.js
checkNodeVersion
运行vue.js
,第一步就是校验Node版本是否符合package.json中的engines.node
的node版本。
const requiredVersion = require('../package.json').engines.node
function checkNodeVersion (wanted, id) {
if (!semver.satisfies(process.version, wanted, { includePrerelease: true })) {
console.log(chalk.red(
'You are using Node ' + process.version + ', but this version of ' + id +
' requires Node ' + wanted + '.\nPlease upgrade your Node version.'
))
process.exit(1)
}
}
checkNodeVersion(requiredVersion, '@vue/cli')
其中npm包semver
的satisfies
方法校验版本是否符合,若不符合则退出运行进程。
随后判断Node版本若不是LTS版本,则警告用户升级。
const EOL_NODE_MAJORS = ['8.x', '9.x', '11.x', '13.x']
for (const major of EOL_NODE_MAJORS) {
if (semver.satisfies(process.version, major)) {
console.log(chalk.red(
`You are using Node ${process.version}.\n` +
`Node.js ${major} has already reached end-of-life and will not be supported in future major releases.\n` +
`It's strongly recommended to use an active LTS version instead.`
))
}
}
commander 执行命令行输入
commander
是一个轻巧的nodejs模块,提供了用户命令行输入和参数解析强大功能。具体可以见下面的参考文章
const program = require('commander')
program
.version(`@vue/cli ${require('../package').version}`)
.usage('<command> [options]')
program
.command('create <app-name>')
// 省略options
...
program
.command('add <plugin> [pluginOptions]')
// 省略后面代码,待具体分析
...
program.parse(process.argv)
vue -V
会触发commander的version
函数,输出package.json
的version
属性。
此外,commander还监听执行14个命令,后面会具体分析几个重要的命令
总结
简单介绍了命令行工具vue/@cli
执行vue -V
的过程,首先会检查运行的node版本是否符合需求,然后通过commander
来解析执行命令行输入。最后再简单介绍了vue/cli
还绑定的14个命令行。其中chalk
和commander
作为cli
常用的开发工具需要熟练掌握,同时也需要了解process
的相关api,例如process.version
获取node版本等。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。