中文字幕免费精品_亚洲视频自拍_亚洲综合国产激情另类一区_色综合咪咪久久

nodejs命令行參數處理模塊commander使用實例
來源:易賢網 閱讀:918 次 日期: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)版權所有:易賢網
云南網警報警專用圖標
主站蜘蛛池模板: 康保县| 武夷山市| 聊城市| 慈溪市| 宁津县| 饶平县| 汤阴县| 南昌市| 福鼎市| 凤山市| 乌苏市| 鹿泉市| 金寨县| 武山县| 招远市| 衡东县| 皮山县| 卢龙县| 巴彦淖尔市| 长寿区| 孟州市| 新野县| 武强县| 安福县| 缙云县| 乌兰察布市| 九台市| 北海市| 泰安市| 大宁县| 蓬安县| 奉新县| 视频| 富源县| 吐鲁番市| 孟州市| 梅河口市| 娄底市| 邹城市| 赣榆县| 姜堰市|