npm install安装很慢
时间: 2023-12-12 10:35:13 浏览: 101
npm-plugins-loader:npm插件加载器
以下是几种加速npm install的方法:
1.更换npm源为淘宝镜像
```shell
npm config set registry https://registry.npm.taobao.org
```
2.使用cnpm代替npm
```shell
npm install -g cnpm --registry=https://registry.npm.taobao.org
```
3.使用nrm管理npm源
```shell
npm install -g nrm
nrm ls # 查看可用的npm源
nrm use taobao # 切换到淘宝镜像
```
4.使用yarn代替npm
```shell
npm install -g yarn
yarn config set registry https://registry.npm.taobao.org
```
阅读全文