nodejs命令行參數(shù)處理模塊commander使用實(shí)例
來源:易賢網(wǎng) 閱讀:800 次 日期:2016-06-20 10:38:31
溫馨提示:易賢網(wǎng)小編為您整理了“nodejs命令行參數(shù)處理模塊commander使用實(shí)例”,方便廣大網(wǎng)友查閱!

誠然,之前處理都是使用內(nèi)置的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

當(dāng)然你也可以手動生成:

代碼如下:

#!/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操作下拉框
易賢網(wǎng)手機(jī)網(wǎng)站地址:nodejs命令行參數(shù)處理模塊commander使用實(shí)例
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國考·省考課程試聽報(bào)名

  • 報(bào)班類型
  • 姓名
  • 手機(jī)號
  • 驗(yàn)證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 加入群交流 | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
咨詢QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專用圖標(biāo)