本文主要是介绍安装淘宝镜像cnpm,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
npm使用国内淘宝镜像
一、通过命令配置
- 设置淘宝镜像源
npm config set registry https://registry.npm.taobao.org/
- 设置官方镜像源
npm config set registry https://registry.npmjs.org
- 查看镜像使用状态
npm config get registry
二、安装cnpm
- 安装cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org
- 安装过程中安装失败
解决方案:
// 1.清除缓存
npm cache clean --force
// 2.切换新源
npm config set registry https://registry.npmmirror.com
// 3. 查看源是否设置成功
npm config get registry
// 4. 安装
到这里就可以正常使用npm命令安装需要的工具了。如( npm install -g cnpm )
- 查看cnvm
cnpm -v
- 注册模块镜像
# 注册模块镜像npm set registry https://registry.npm.taobao.org // node-gyp 编译依赖的 node 源码镜像 npm set disturl https://npm.taobao.org/dist // 清空缓存 npm cache clean --force // 安装cnpm npm install -g cnpm --registry=https://registry.npm.taobao.org
这篇关于安装淘宝镜像cnpm的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!