我是通过" npm"运行的NodeJS文件。命令。我一直试图列出所有参数(包括标志)。如果我通过直接调用节点exe来运行它,它工作正常,但如果我使用npm
命令,我无法访问标志。
代码:
console.dir(process.argv);
当我像这样运行文件时,
node file.js arg1 arg2 -f --flag2
我可以得到所有的论据。
[ '/usr/local/bin/node',
'/.../file.js',
'arg1',
'arg2',
'-f',
'--flag2' ]
但是如果我将一个npm runner添加到package.json文件并尝试使用它运行,我只能获取参数而不是标志。
npm run test arg1 arg2 -f --flag2
结果:
[ '/usr/local/bin/node',
'/.../file.js',
'arg1',
'arg2' ]
package.json文件:
{
"name": "name",
"version": "1.0.0",
"description": "",
"main": "test.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test" : "node test.js"
},
"keywords": [],
"author": "",
"license": "ISC"
}
基本上,节点不会将标志传递给正在运行的脚本。这有解决方案吗?我的真实项目有很长的路径,有很多参数,所以我想用一个快捷方式来测试它。
答案 0 :(得分:11)
在参数前使用双短划线:
npm run test -- arg1 arg2 -f --flag2