设置npm的registry

 1 1.原npm地址
 2
 3 npm config set registry http://registry.npmjs.org
 4 2.设置国内镜像
 5
 6 a.通过config命令
 7
 8 npm config set registry https://registry.npm.taobao.org
 9 npm info underscore (如果上面配置正确这个命令会有字符串response)
10 b.命令行指定
11
12 npm --registry https://registry.npm.taobao.org info underscore
13 c.编辑 ~/.npmrc 加入下面内容
14
15 registry = https://registry.npm.taobao.org
16 3.使用nrm管理registry地址
17
18 a.下载nrm
19
20 npm install -g nrm
21 b.添加registry地址
22
23 nrm add npm http://registry.npmjs.org
24 nrm add taobao https://registry.npm.taobao.org
25 c.切换npm registry地址
26
27 nrm use taobao
28 nrm use npm
29 搜索镜像: https://npm.taobao.org
30
31 建立或使用镜像,参考: https://github.com/cnpm/cnpmjs.org

原文地址:https://www.cnblogs.com/wangshixi12/p/10686240.html

时间: 2024-10-14 11:12:36

设置npm的registry的相关文章

设置npm的registry几种方法

1.临时使用npm --registry https://registry.npm.taobao.org install express 2.持久使用npm config set registry https://registry.npm.taobao.org配置后可通过下面方式来验证是否成功 npm config get registry 或  npm info express 3.通过cnpm使用npm install -g cnpm --registry=https://registry.

解决npm安装模块时 npm err! registry error parsing json

最近还真是点背,从yeoman生成一个react项目或是github上克隆一个项目,在npm install的时候, 一直报npm err! registry error parsing json(就是一行红色的,因为解决了,图没了,也懒的复现了) 我的解决方式是 因为是错误中有registry,所以就应该是registry 的问题 因为我的电脑有vpn 而且网速3m/s,所以网络问题is no 因为我设置了淘宝镜像吗, 先来npm config list一下试试 哦原来是我安装了淘宝镜像啊,

修改npm的registry为淘宝镜像(npm.taobao.org)

来源:https://cnodejs.org/topic/4f9904f9407edba21468f31e 镜像使用方法(三种办法任意一种都能解决问题,建议使用第三种,将配置写死,下次用的时候配置还在): 1.通过config命令 npm config set registry https://registry.npm.taobao.org npm info underscore (如果上面配置正确这个命令会有字符串response) 2.命令行指定 npm --registry https:/

设置npm安装模块目录<nodejs>

nodejs安装模块命令: npm install <input_name> # 本地安装 npm install <input_name> -g # 全局安装 1.npm install <input_name> -g --模块安装到全局目录 npm config set prefix --设置全局目录路径 npm config get prefix --获取当前设置全局目录. 2.npm install <input_name>     --模块安装到当

设置npm淘宝代理

来源:https://cnodejs.org/topic/4f9904f9407edba21468f31e 镜像使用方法(三种办法任意一种都能解决问题,建议使用第三种,将配置写死,下次用的时候配置还在): 1.通过config命令 npm config set registry https://registry.npm.taobao.org npm info underscore (如果上面配置正确这个命令会有字符串response) 2.命令行指定 npm --registry https:/

设置npm源为淘宝镜像

修改: npm config set registry http://registry.npm.taobao.org/ 配置后验证是否成功(查看当前npm源): npm config get registry 还原: npm config set registry https://registry.npmjs.org/ 原文地址:https://www.cnblogs.com/wuqilang/p/12336991.html

设置npm的regisyry的几种方法

// 临时使用 npm --registry https://registry.npm.taobao.org install <依赖的库> // 持久使用 npm config set registry https://registry.npm.taobao.org // 配置后可通过下面方式来验证是否成功 npm config get registry 或 npm info express // 通过cnpm使用 npm install -g cnpm --registry=https://

taobao npm registry

http://npm.taobao.org/ # 当前命令中改变registry >npm install reactjs --registry=https://registry.npm.taobao.org --verbose # 设置npm的registry >npm config list >npm config set registry " https://registry.npm.taobao.org "

npm淘宝镜像的设置和删除

设置 npm config set registry https://registry.npm.taobao.org npm config set disturl https://npm.taobao.org/dist 删除 npm config delete registry npm config delete disturl   原文地址:https://www.cnblogs.com/ImaY/p/8776512.html