8

我正在使用commander.js编写一个与API 交互的简单node.js 程序。所有调用都需要使用子命令。例如:

apicommand get

调用如下:

program
  .version('1.0.0')
  .command('get [accountId]')
  .description('retrieves account info for the specified account')
  .option('-v, --verbose', 'display extended logging information')
  .action(getAccount);

我现在要做的是在apicommand没有任何子命令的情况下调用时显示默认消息。就像在git没有子命令的情况下调用一样:

MacBook-Air:Desktop username$ git
usage: git [--version] [--help] [-C <path>] [-c name=value]
       [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
       [-p | --paginate | --no-pager] [--no-replace-objects] [--bare]
       [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]
       <command> [<args>]

These are common Git commands used in various situations:

start a working area (see also: git help tutorial)
   clone      Clone a repository into a new directory
   init       Create an empty Git repository or reinitialize an existing one
...
4

3 回答 3

13

您可以通过检查收到的参数以及是否没有其他内容来执行此类操作node<app>.js然后显示帮助文本。

program
  .version('1.0.0')
  .command('get [accountId]')
  .description('retrieves account info for the specified account')
  .option('-v, --verbose', 'display extended logging information')
  .action(getAccount)
  .parse(process.argv)

if (process.argv.length < 3) {
  program.help()
}
于 2017-06-07T17:44:01.970 回答
0

我现在要做的是在没有任何子命令的情况下调用 apicommand 时显示默认消息。就像你在没有子命令的情况下调用 git

如果您在没有子命令的情况下调用,则从 Commander 5 开始会自动显示帮助。

(披露:我是指挥官的维护者。)

于 2021-12-23T06:29:13.397 回答
0

当您尝试传递命令时,它将命令存储在process.argv数组中。

您可以在代码末尾添加一个条件,例如-:

if(process.argv.length  <= 2)
console.log(program.help());
else 
program.parse();
于 2021-12-23T06:02:34.723 回答