带有commander.js的未命名参数

时间:2013-01-28 05:37:38

标签: node.js command-line-interface

我目前正在查看commander.js,因为我想使用Node.js实现CLI。

使用命名参数很容易,因为“披萨”程序的示例显示:

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);

现在,例如,我可以使用以下方式调用该程序:

$ app -p -b

但是一个未命名的参数呢?如果我想使用

调用它会怎么样?
$ app italian -p -b

?我认为这不是很常见,因此为cp命令提供文件也不需要使用命名参数。这只是

$ cp source target

而不是:

$ cp -s source -t target

如何使用commander.js实现此目的?

而且,如何告诉commander.js需要未命名的参数?例如,如果您查看cp命令,则需要源和目标。

2 个答案:

答案 0 :(得分:8)

老问题,但因为还没有回答......

使用当前版本的指挥官,可以使用位置参数。有关详细信息,请参阅docs on argument syntax,但使用cp示例可能会出现以下情况:

program
.version('0.0.1')
.arguments('<source> <target>')
.action(function(source, target) {
    // do something with source and target
})
.parse(process.argv);

如果两个参数都不存在,该程序将会抱怨,并给出适当的警告信息。

答案 1 :(得分:4)

您可以通过program.args获取所有未命名的参数。将以下行添加到示例中

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

当您使用-p -b -c gouda arg1 arg2运行应用时,您将获得

you ordered a pizza with:
- peppers
- bbq
- gouda cheese
args: ["arg1","arg2"]

然后你可以写点像

copy args[0] to args[1] // just to give an idea