我在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的特殊关键字,有什么方法来解决这个问题吗?
当前回答
通过执行.bat,你只是在为该会话设置配置,而不是全局的。当你打开另一个cmd提示符并运行npm时,安装该配置将不会为此会话设置,因此将你的.bat文件修改为
@echo off
npm config set registry https://registry.npmjs.org/
@cmd.exe /K
其他回答
通过执行.bat,你只是在为该会话设置配置,而不是全局的。当你打开另一个cmd提示符并运行npm时,安装该配置将不会为此会话设置,因此将你的.bat文件修改为
@echo off
npm config set registry https://registry.npmjs.org/
@cmd.exe /K
在4.4.1版本中,您可以使用:
npm config set @myco:registry=http://reg.example.com
其中@myco是包的作用域。您可以通过以下方式安装package:
npm install @myco/my-package
裁判:https://docs.npmjs.com/misc/scope
在npm 3.7.3版本上
NPM设置注册表=http://whatever/
全局设置npm注册表 使用下面的命令修改登录用户的.npmrc配置文件 NPM配置注册表<注册表url> 示例:npm config set registry https://registry.npmjs.org/
设置npm注册表范围 作用域允许将相关的包分组在一起。作用域包将安装在node_modules文件夹下的子文件夹中。 例如:node_modules / @my-org packagaename 要设置范围注册表,请使用:npm config set @my-org:registry http://example.reg-org.com 使用作用域安装包:npm install @ myy-org /mypackage 无论何时你从scope @my-org安装任何包,NPM都会在链接到scope @my-org的注册表设置中搜索注册表url。
在本地为一个项目设置npm注册表 仅为当前项目修改npm注册表。在项目的根文件夹中创建一个名为.npmrc的文件 在文件中添加以下内容
registry = 'https://registry.npmjs.org/'
我们还可以为多个自定义注册表url运行带有注册表选项的npm install。
npm install --registry=https://registry.npmjs.org/
npm install --registry=https://custom.npm.registry.com/