我在跑步:
node app.js add
我的代码是:
const yargs = require('yargs');
yargs.command({
command:'add',
describe:'Adding command',
handler:function(){
console.log('Adding notes');
},
})
但是控制台上没有打印任何内容。
正如上面评论中提到的@jonrsharpe。
尝试:
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
您必须提供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;
如果您有一个命令,这没关系。但是对于多个命令,在定义所有命令后最后执行 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()
我也面临这个问题并找到最新更新节点的解决方案。您需要将文件扩展名从 .js 更改为 .cjs 并且它工作正常。