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



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

那么,是否可以使用registrystrict-ssl等内联选项运行npx命令(最好是交叉表单(?像这样:

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

我在PowerShell/Windows上尝试了上面的代码片段,但是我的注册表没有命中,无论如何它都试图访问默认注册表(https://registry.npmjs.org(。

使用

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

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

相关内容

  • 没有找到相关文章

最新更新