将参数传递给 package.json 中的 npm 脚本 [重复]
Posted
技术标签:
【中文标题】将参数传递给 package.json 中的 npm 脚本 [重复]【英文标题】:Passing arguments to npm script in package.json [duplicate] 【发布时间】:2016-05-15 06:00:08 【问题描述】:有没有办法在 package.json 命令中传递参数?
我的脚本:
"scripts":
"test": "node mytest.js $1 $2 | node_modules/tap-difflet/bin/tap-difflet"
clinpm run test 8080 production
然后在mytest.js
上,我想用process.argv
获取参数
【问题讨论】:
在那个例子中没有传递管道输出。 有一个简单的解决方案NUM=1 npm run build
> package.json > "build": "echo $NUM"`
【参考方案1】:
注意:它只适用于 shell 环境,不适用于 Windows cmd。您应该在 Windows 上使用 bash,例如 Git Bash。或者,如果您使用的是 win10,请尝试 Linux 子系统。
向脚本传递参数
要将参数传递给npm script,为了安全起见,您应该在--
之后提供它们。
在您的情况下,--
可以省略。它们的行为相同:
npm run test -- 8080 production
npm run test 8080 production
但是当参数包含选项(例如-p
)时,--
是必需的,否则 npm 将解析它们并将它们视为 npm 的选项。
npm run test -- 8080 -p
使用位置参数
参数只是附加到要运行的脚本中。您的 $1
$2
将无法解决。 npm 实际运行的命令是:
node mytest.js $1 $2 | node_modules/tap-difflet/bin/tap-difflet "8080" "production"
为了使位置变量在 npm 脚本中起作用,请将命令包装在 shell 函数中:
"scripts":
"test": "run() node mytest.js $1 $2 | node_modules/tap-difflet/bin/tap-difflet; ; run"
或者使用工具scripty 并将您的脚本放在一个单独的文件中。
package.json:
"scripts":
"test": "scripty"
脚本/测试:
#!/usr/bin/env sh
node mytest.js $1 $2 | node_modules/tap-difflet/bin/tap-difflet
【讨论】:
这似乎不适用于 Windows 机器。我收到错误:“运行”不是内部或外部命令、可运行程序或批处理文件 @BenSouthall 是的,它只适用于 shell 环境,不适用于 Windows cmd。您应该在 Windows 上使用 bash,例如 Git Bash。或者,如果您使用的是 win10,请尝试 Linux 子系统。 我正在使用 Git Bash,但它似乎仍然无法正常工作。 这会给我一个错误:code ELIFECYCL; npm ERR! Exit status 1
@aleung
@incodeveritas 请先验证您的脚本。见***.com/questions/30744964/…以上是关于将参数传递给 package.json 中的 npm 脚本 [重复]的主要内容,如果未能解决你的问题,请参考以下文章
将相同的参数传递给 package.json 中多个脚本的节点
Python Pandas:将参数传递给 agg() 中的函数