在我的 apps.js 文件中,我有以下代码:
const yargs=require('yargs');
const argv=yargs.argv;
console.log('yargs',argv);
当我正常运行命令时,我得到:
> node app.js read --title="to by"
yargs { _: [ 'read' ],
help: false,
version: false,
title: 'to by',
'$0': 'app.js' }
但是,当我使用 nodemon 时,如果标题中有空格,我会得到错误的参数:
> nodemon app.js read --title="to by"
yargs { _: [ 'read', '"--title=to', 'by"' ],
help: false,
version: false,
'$0': 'app.js' }
所以应用程序无法正常运行。这里发生了什么?谢谢