运行npx时如何传递内联选项?

时间:2019-12-25 13:03:55

标签: npx npm-registry

在不更改工作站的全局npm配置或在当前目录中创建.npmrc文件的情况下,我想使用私有关系注册表运行npx程序包。

那么,是否可以使用registrystrict-ssl之类的内联选项来运行npx命令(最好是跨平台)?像这样:

npx somerunnablepackage --registry https://mynexus --strict-ssl false

我在PowerShell / Windows上尝试了上面的代码段,但是未命中我的注册表,并且它仍然尝试访问默认注册表(https://registry.npmjs.org)。

1 个答案:

答案 0 :(得分:0)

使用

npm_config_registry=https://mynexus npm_config_strict_ssl=false npx somerunnablepackage

请参见https://docs.npmjs.com/misc/config