欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

npm设置淘宝镜像

程序员文章站 2022-05-29 17:11:01
...

版本 node v8.11.1 npm 5.6.0
npm设置淘宝镜像

一、通过config命令

npm config set registry https://registry.npm.taobao.org 

这种方式有点问题,通过config命令方式会导致在npm install时报一个配置文件错误,看不懂,最后重装了使用直接修改配置文件的方式

二、通过编辑(C:\Program Files\nodejs\node_modules\npm)npmrc 文件,在文件里面加上:

registry = https://registry.npm.taobao.org

npm设置淘宝镜像

三、在安装包时直接指定registry地址

npm install vue –registry=https://registry.npm.taobao.org