在不更改工作站的全局 npm 配置或在当前目录中创建.npmrc
文件的情况下,我想使用私有 nexus 注册表运行 npx 包。
那么,是否可以使用registry
和strict-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