一起来学习如何用 Node 来制作 CLI
CLI 是什么
提起 CLI
,不由得会想起 vue-cli
和 angular-cli
,它们都是基于 Node
的命令行工具。
CLI
为什么要开发一个 假设你现在要建立一个新项目 ,这个项目配置和之前的项目配置是一样的。在你没有 CLI
的时候,你只能通过复制、粘贴来进行。然而,当你有了 CLI
,你就可以通过命令来完成这些步骤。当然,你可以说就新建一个项目,完全没必要再开发一个 CLI
工具。那如果你要新建 n 个项目呢?这个时候,有 CLI
和没有 CLI
的区别就体现出来了。
CLI
怎么开发一个 准备
开发一个 CLI
,需要用到以下工具:
开始
新建一个文件夹,名称起做 demo-cli
,并在文件夹内 npm init
。在 demo-cli
文件夹内,新建 bin
文件夹,并在该文件夹内新建 index.js
文件。紧接着,打开 demo-cli
文件夹内的 package.json
文件,在里面新增如下命令。
{
"bin": {
"demo": "./bin/index.js"
}
}
2
3
4
5
这句代码的意思是指,在你使用 demo
命令的时候,会去执行 bin
文件夹下的 index.js
文件。
这时候,我们在 index.js
文件,写入以下代码。
#!/usr/bin/env node
console.log('hello CLI');
2
3
4
5
在 demo-cli
目录下依次运行 npm link
、demo
,这个时候,你会发现控制台输出了 hello CLI
。
备注:
#!/usr/bin/env node
告诉操作系统用Node
来运行此文件npm link
作用主要是,在开发npm
模块的时候,我们会希望边开发边调试。这个时候,npm link
就派上用场了。
逐步深入
- 在
index.js
文件内,写入以下代码。
#!/usr/bin/env node
const program = require('commander');
program
.version('1.0.0', '-v, --version')
.command('init <dir>', 'generate a new project')
.parse(process.argv);
2
3
4
5
6
7
8
commander
提供了一种使用 node.js
来开发命令行的可能性。我们可以通过 commander
的 option
方法,来定义 commander
的选项,当然,这些定义的选项也会被作为该命令的帮助文档。
version
:用来定义版本号。commander
默认帮我们添加-V, --version
选项。当然,我们也可以重设它。command
:<>
代表必填,[]
代表选填。当.command()
带有描述参数时,不能采用.action(callback)
来处理子命令,否则会出错。这告诉commander
,你将采用单独的可执行文件作为子命令。parse
:解析process.argv
,解析完成后的数据会存放到new Command().args
数组中。process.argv
里面存储内容如下:
所以,我们可以通过 program.args[0]
来取出 dir
的值。
问题:为什么当
command
没有描述参数,且parse
方法使用链式调用会报错?(猜想:command
有desc
参数时,返回的是this
,当没有desc
参数时,返回的是新对象,根据API Document
得出)
```js
// 正确
program
.version('1.0.0', '-v, --version')
.command('init <dir>', 'generate a new project')
.action(function(dir, cmd){
console.log(dir, cmd)
})
.parse(process.argv);
// 正确
program
.version('1.0.0', '-v, --version')
.command('init <dir>', 'generate a new project')
.action(function(dir, cmd){
console.log(dir, cmd)
})
program.parse(process.argv);
// 正确
program
.version('1.0.0', '-v, --version')
.command('init <dir>')
.action(function(dir, cmd){
console.log(dir, cmd)
})
program.parse(process.argv);
// 错误
program
.version('1.0.0', '-v, --version')
.command('init <dir>')
.action(function(dir, cmd){
console.log(dir, cmd)
})
.parse(process.argv);
```
- 在
bin
文件下创建demo-init.js
文件,部分代码如下:
#!/usr/bin/env node
const shell = require('shelljs');
const program = require('commander');
const inquirer = require('inquirer');
const download = require('download-git-repo');
const ora = require('ora');
const fs = require('fs');
const path = require('path');
const spinner = ora();
program.parse(process.argv);
let dir = program.args[0];
const questions = [{
type: 'input',
name: 'name',
message: '请输入项目名称',
default: 'demo-static',
validate: (name)=>{
if(/^[a-z]+/.test(name)){
return true;
}else{
return '项目名称必须以小写字母开头';
}
}
}]
inquirer.prompt(questions).then((answers)=>{
// 初始化模板文件
downloadTemplate(answers);
})
function downloadTemplate(params){
spinner.start('loading');
let isHasDir = fs.existsSync(path.resolve(dir));
if(isHasDir){
spinner.fail('当前目录已存在!');
return false;
}
// 开始下载模板文件
download('gitlab:git.gitlab.com/demo-static', dir, {clone: true}, function(err){
if(err){
spinner.fail(err);
};
updateTemplateFile(params);
})
}
function updateTemplateFile(params){
let { name, description } = params;
fs.readFile(`${path.resolve(dir)}/public/package.json`, (err, buffer)=>{
if(err) {
console.log(chalk.red(err));
return false;
}
shell.rm('-f', `${path.resolve(dir)}/.git`);
shell.rm('-f', `${path.resolve(dir)}/public/CHANGELOG.md`);
let packageJson = JSON.parse(buffer);
Object.assign(packageJson, params);
fs.writeFileSync(`${path.resolve(dir)}/public/package.json`, JSON.stringify(packageJson, null, 2));
fs.writeFileSync(`${path.resolve(dir)}/README.md`, `# ${name}\n> ${description}`);
spinner.succeed('创建完毕');
});
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
inquirer
主要提供交互式命令的功能。validate
返回true
代表输入值验证合法,如果返回任意字符串,则会替代默认的错误消息返回。- 通过
Node
中fs
模块来判断文件夹是否已存在。path.resolve
方法用于将相对路径转为绝对路径。它可以接受多个参数,依次表示所要进入的路径,直到将最后一个参数转为绝对路径。如果根据参数无法得到绝对路径,就以当前所在路径作为基准。除了根目录,该方法的返回值都不带尾部的斜杠。