一、npm篇
npm全局使用
1、查看当前的镜像源,可以使用下面的命令:
npm config get registry
2、设置为淘宝源,可以使用下面的命令:
npm config set registry https://registry.npm.taobao.org
3、还原默认源,可以使用下面的命令:
npm config set registry https://registry.npmjs.org/
npm临时使用
1、上面那种设置是全局的,以后每次都会自动读取已经设置好的源,如果只是一次性使用,可以使用下面的命令
npm --registry https://registry.npm.taobao.org install XXX(模块名)
cnpm
1、cnpm(cnpm是一个命令,用它来代替npm)全局使用,可以使用下面的命令:
npm install -g cnpm --registry=https://registry.npm.taobao.org
2、cnpm 安装依赖包,可以使用下面的命令:
cnpm install XXX(模块名)
二、pnpm篇
1、查看当前镜像源,可以使用下面的命令:
pnpm config get registry
2、设置为淘宝镜像源,可以使用下面的命令:
pnpm config set registry https://registry.npmmirror.com
3、切回原镜像源,可以使用下面的命令:
pnpm config set registry https://registry.npmjs.org
三、常用镜像源
npm 官方原始镜像网址是:https://registry.npmjs.org/
淘宝 NPM 镜像:http://registry.npmmirror.com
阿里云 NPM 镜像:https://npm.aliyun.com
腾讯云 NPM 镜像:https://mirrors.cloud.tencent.com/npm/
华为云 NPM 镜像:https://mirrors.huaweicloud.com/repository/npm/
网易 NPM 镜像:https://mirrors.163.com/npm/
中国科学技术大学开源镜像站:http://mirrors.ustc.edu.cn/
清华大学开源镜像站:https://mirrors.tuna.tsinghua.edu.cn/
腾讯,华为,阿里的镜像站基本上比较全