我是靠谱客的博主 俭朴河马,这篇文章主要介绍如何用nodejs 开发一个命令行交互工具,现在分享给大家,希望可以做个参考。

参考地址1

参考地址2

一、npm package.json bin

1、package.json

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ "name": "test", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "test": "echo "Error: no test specified" && exit 1" }, "keywords": [], "author": "", "license": "ISC", "bin": { "gen": "bin/gen.js" }, "dependencies": { "commander": "^2.15.1" } }

2、bin/gen.js

复制代码
1
2
3
4
5
6
7
8
#!/usr/bin/env node var argv = process.argv; var filePath = __dirname; var currentPath = process.cwd(); console.log(argv) console.log(filePath) console.log(currentPath)

 

二、Commnader + inquirer + minimist + download-git-repo + ejs(Nunjucks、handlebars ) +  execa (child_process)

 

Commander 示例

复制代码
1
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
#!/usr/bin/env node var program = require('commander'); program .version('0.0.1') .option('-C, --chdir <path>', 'change the working directory') .option('-c, --config <path>', 'set config path. defaults to ./deploy.conf') .option('-T, --no-tests', 'ignore test hook') .option('-p, --peppers', 'Add peppers') .option('-P, --pineapple', 'Add pineapple') .option('-b, --bbq-sauce', 'Add bbq sauce') .option('--p, --fuck-you', 'fuckyou') .option('build --env <fuckyou>', 'fuckyou2') .parse(process.argv); if (program.peppers) console.log(' - peppers'); if (program.pineapple) console.log(' - pineapple'); if (program.bbqSauce) console.log(' - bbq'); if (program.fuckYou) console.log('fuckyou'); if (program.env && program.args.length != 0) { console.log(program.args); } program .command('init') .description('run remote setup commands') .action(function() { console.log('setup'); }); program .command('exec <cmd>') .description('run the given remote command') .action(function(cmd) { console.log('exec "%s"', cmd); }); program .command('teardown <dir> [otherDirs...]') .description('run teardown commands') .action(function(dir, otherDirs) { console.log('dir "%s"', dir); if (otherDirs) { otherDirs.forEach(function (oDir) { console.log('dir "%s"', oDir); }); } });

 

转载于:https://www.cnblogs.com/CyLee/p/9189849.html

最后

以上就是俭朴河马最近收集整理的关于如何用nodejs 开发一个命令行交互工具的全部内容,更多相关如何用nodejs内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(62)

评论列表共有 0 条评论

立即
投稿
返回
顶部