赞
踩
1、安装cnpm
npm i -g cnpm --registry=https://registry.npm.taobao.org
2、然后就可以cnpm安装依赖包了
cnpm i -g vue vue-cli
cnpm config ls 查看
会发现里面的registry是npm原始的镜像:https://registry.npmjs.org/
3、npm临时使用淘宝镜像安装依赖包
npm i -g express --registry https://registry.npm.taobao.org
4、npm持久使用淘宝镜像安装依赖包
npm config set registry https://registry.npm.taobao.org
npm i -g express
注意,不推荐这样子,因为把npm的镜像完全设为了淘宝的镜像,万一我们有些依赖包只有npm原始镜像里面才有,而淘宝里面没有,那就悲剧了。所以分开npm和cnpm是最好的。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。