足球游戏_中国足彩网¥体育资讯$

nodejs命令行参数处理模块commander使用实例
来源:易贤网 阅读:687 次 日期:2016-06-20 10:38:31
温馨提示:易贤网小编为您整理了“nodejs命令行参数处理模块commander使用实例”,方便广大网友查阅!

诚然,之前处理都是使用内置的process.agrv ,这个能work,但是不好使,于是tj大神给写了一个,my god,完全的高大上:

1、安装

代码如下:

npm install commander

2、option 解析

options with commander are defined with the .option() method, also serving as documentation for the options. the example below parses args and options from process.argv, leaving remaining args as the program.args array which were not consumed by options.

代码如下:

#!/usr/bin/env node

/**

* module dependencies.

*/

var program = require('commander');

program

.version('0.0.1')

.option('-p, --peppers', 'add peppers')

.option('-p, --pineapple', 'add pineapple')

.option('-b, --bbq', 'add bbq sauce')

.option('-c, --cheese [type]', 'add the specified type of cheese [marble]', 'marble')

.parse(process.argv);

console.log('you ordered a pizza with:');

if (program.peppers) console.log(' - peppers');

if (program.pineapple) console.log(' - pineapple');

if (program.bbq) console.log(' - bbq');

console.log(' - %s cheese', program.cheese);

short flags may be passed as a single arg, for example -abc is equivalent to -a -b -c. multi-word options such as “–template-engine” are camel-cased, becoming program.templateengine etc.

3、自动生成help信息

代码如下:

$ ./examples/pizza --help

usage: pizza [options]

options:

-v, --version output the version number

-p, --peppers add peppers

-p, --pineapple add pineapple

-b, --bbq add bbq sauce

-c, --cheese add the specified type of cheese [marble]

-h, --help output usage information

当然你也可以手动生成:

代码如下:

#!/usr/bin/env node

/**

* module dependencies.

*/

var program = require('../');

function list(val) {

return val.split(',').map(number);

}

program

.version('0.0.1')

.option('-f, --foo', 'enable some foo')

.option('-b, --bar', 'enable some bar')

.option('-b, --baz', 'enable some baz');

// must be before .parse() since

// node's emit() is immediate

program.on('--help', function(){

console.log(' examples:');

console.log('');

console.log(' $ custom-help --help');

console.log(' $ custom-help -h');

console.log('');

});

program.parse(process.argv);

console.log('stuff');

4、举个完整的例子

代码如下:

function range(val) {

return val.split('..').map(number);

}

function list(val) {

return val.split(',');

}

function collect(val, memo) {

memo.push(val);

return memo;

}

function increaseverbosity(v, total) {

return total + 1;

}

program

.version('0.0.1')

.usage('[options] ')

.option('-i, --integer ', 'an integer argument', parseint)

.option('-f, --float ', 'a float argument', parsefloat)

.option('-r, --range ..', 'a range', range)

.option('-l, --list ', 'a list', list)

.option('-o, --optional [value]', 'an optional value')

.option('-c, --collect [value]', 'a repeatable value', collect, [])

.option('-v, --verbose', 'a value that can be increased', increaseverbosity, 0)

.parse(process.argv);

console.log(' int: %j', program.integer);

console.log(' float: %j', program.float);

console.log(' optional: %j', program.optional);

program.range = program.range || [];

console.log(' range: %j..%j', program.range[0], program.range[1]);

console.log(' list: %j', program.list);

console.log(' collect: %j', program.collect);

console.log(' verbosity: %j', program.verbose);

console.log(' args: %j', program.args);

中国足彩网信息请查看脚本栏目
上一篇:js操作下拉框
由于各方面情况的不断调整与变化,易贤网提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!
关于我们 | 联系我们 | 人才招聘 | 网站声明 | 网站帮助 | 非正式的简要咨询 | 简要咨询须知 | 加入群交流 | 手机站点 | 投诉建议
工业和信息化部备案号:滇ICP备2023014141号-1 足球游戏_中国足彩网¥体育资讯$ 滇公网安备53010202001879号 人力资源服务许可证:(云)人服证字(2023)第0102001523号
云南网警备案专用图标
联系电话:0871-65317125(9:00—18:00) 获取招聘考试信息及咨询关注公众号:hfpxwx
咨询QQ:526150442(9:00—18:00)版权所有:易贤网
云南网警报警专用图标