2

我正在使用command@2.9.0。附上下面的代码

包.json

{
  "name": "commandtools",
  "version": "1.0.0",
  "description": "A command line example",
  "main": "index.js",
  "scripts": {
         "test": "node index.js hello"
  },
  "author": "aaa <aaa@xxx.com>",
  "license": "MIT",
  "bin": {
    "cmdtools":"./index.js"
  },
  "dependencies": {
    "commander": "^2.9.0"
  }
}

index.js

var program = require('commander');

program
    .version('0.0.1')
        .usage('<input>')
            .parse(process.argv);

            if(!program.args.length) {
                        program.help();
            } else {
                        console.log('Input: ' + program.args);
            }

在命令行中执行时,

cmdtools Hello

index.js 文件在命令行中打开而没有任何输出

执行时,

npm test

输出是

Input: hello

我错过了什么?

4

2 回答 2

0

npm 模块中的错误是

  • 全局安装包,但没有执行npm link
  • 所以,执行 npm link 并尝试cmdtools Hello得到预期的输出
于 2017-02-21T15:32:17.013 回答
0

您的代码输出在命令行中传递的参数。

npm test输出Input: hello,因为npm test实际运行node index.js hello。如果更改node index.js hellonode index.js banana输出将是Input: banana.

有关 CLI 参数以及如何在此处访问它们的更多信息:https ://nodejs.org/api/process.html#process_process_argv

cmdtoolscommand 不输出任何内容,因为没有传递给index.js文件的参数。

运行cmdtools命令时,您将参数传递给cmdtools命令而不是index.js. 什么都没有输出,因为program.help()没有向控制台输出任何东西。您可以通过运行console.log('test')而不是program.help().

于 2017-02-21T12:38:38.287 回答