nodejs命令行參數處理模塊commander使用實例
來源:易賢網 閱讀:906 次 日期: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操作下拉框
由于各方面情況的不斷調整與變化,易賢網提供的所有考試信息和咨詢回復僅供參考,敬請考生以權威部門公布的正式信息和咨詢為準!

2026國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關于我們 | 聯系我們 | 人才招聘 | 網站聲明 | 網站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
工業和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
云南網警備案專用圖標
聯系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關注公眾號:hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權所有:易賢網
云南網警報警專用圖標
未满十八18勿进黄网站免费看