10

我在跑步:

node app.js add

我的代码是:

const yargs = require('yargs');
yargs.command({
    command:'add',
    describe:'Adding command',
    handler:function(){
        console.log('Adding notes');
    },
})

但是控制台上没有打印任何内容。

4

4 回答 4

16

正如上面评论中提到的@jonrsharpe。

您需要调用解析函数或访问argv属性

尝试:

const yargs = require('yargs');

yargs
    .command({
        command:'add',
        describe:'Adding command',
        handler: argv => {
            console.log('Adding notes');
        }
    })
    .parse();

或者

const yargs = require('yargs');

const argv = yargs
    .command({
        command: 'add',
        describe: 'Adding command',
        handler: argv => {
            console.log('Adding notes');
        }
    })
    .argv;

node index.js add

于 2019-05-26T14:29:59.547 回答
10

您必须提供yargs.parse(); 或 yargs.argv;定义所有命令后。

const yargs = require('yargs');
yargs.command({
    command:'add',
    describe:'Adding command',
    handler:function(){
        console.log('Adding notes');
    },
});

yargs.parse();
//or
yargs.argv;

或者

You can .argv or .parse() specify individually

    yargs.command({
        command:'add',
        describe:'Adding command',
        handler:function(){
            console.log('Adding notes');
        },
    }).parse() or .argv;
于 2019-12-20T14:16:58.477 回答
1

如果您有一个命令,这没关系。但是对于多个命令,在定义所有命令后最后执行 yargs.argv。

const yargs = require('yargs');
 
const argv = yargs
    .command({
        command: 'add',
        describe: 'Adding command',
        handler: argv => {
            console.log('Adding notes');
        }
    }).argv;

示例解决方案:

const yargs = require('yargs')

//add command
yargs.command({
    command: 'add',
    describe: 'Add a new note',
    handler: ()=>{
        console.log("Adding a new note")
    }
})
//remove Command
yargs.command({
    command: 'remove',
    describe: "Remove a Note",
    handler: ()=>{
        console.log("removing note")
    }
})

yargs.parse()
于 2021-09-05T19:11:50.027 回答
0

我也面临这个问题并找到最新更新节点的解决方案。您需要将文件扩展名从 .js 更改为 .cjs 并且它工作正常。

于 2021-12-27T11:09:53.447 回答