我在windows 7上创建了a.bat, a.bat的内容是:
@echo off
npm config set registry https://registry.npmjs.org/
然后运行a.bat,但没有工作,我发现“set”这个词是npm和bat的特殊关键字,有什么方法来解决这个问题吗?
我在windows 7上创建了a.bat, a.bat的内容是:
@echo off
npm config set registry https://registry.npmjs.org/
然后运行a.bat,但没有工作,我发现“set”这个词是npm和bat的特殊关键字,有什么方法来解决这个问题吗?
当前回答
在npm 3.7.3版本上
NPM设置注册表=http://whatever/
其他回答
也许我回答得太晚了。但是如果有人需要它,下面的工作很好,因为我已经用过很多次了。
npm config set registry=https://registry.npmjs.com/
我们还可以为多个自定义注册表url运行带有注册表选项的npm install。
npm install --registry=https://registry.npmjs.org/
npm install --registry=https://custom.npm.registry.com/
在npm 3.7.3版本上
NPM设置注册表=http://whatever/
你可能无法像Gntem指出的那样使用.bat文件更改npm注册表。 但是我理解您需要自动更改注册中心的能力。 你可以通过将.npmrc配置放在单独的文件中(比如npmrc_jfrog和npmrc_default),并让你的.bat文件执行复制任务来做到这一点。
例如(在Windows中): default_registry.bat将拥有
xcopy /y npmrc_default .npmrc
你的jfrog_registry.bat会有
xcopy /y npmrc_jfrog .npmrc
注意:/y抑制了确认您想要覆盖现有目标文件的提示。
这将确保所有的配置属性(注册表,代理,apiKeys等)被复制到.npmrc。
你可以在这里阅读更多关于xcopy的内容。
您可以使用.bat进行更改,确保您之前运行了call命令,希望这有助于将来使用类似的.bat命令的任何人
call npm config set registry https://registry.npmjs.org/