赞
踩
在前端开发经常会遇到运行npm install 来安装工具包一直卡住不动,为此这里提供几种解决方案,供大家参考学习,不足之处还请指正。
//
执行以下命令查看是否为国内镜像
npm config get registry
出现如下所示,表明已经为国内镜像无需再修改
如果不是则换成国内镜像,执行以下命令
- npm config set registry=https://registry.npmmirror.com
-
- //执行以下命令查看是否配置成功
- npm config get registry
- // 全局安装yarn (mac需要加上sudo)
- npm install -g yarn
-
- // 成功后使用yarn install安装
- yarn install
- // 全局安装cnpm (mac需要加上sudo)
- npm install cnpm -g --registry=https://registry.npmmirror.com
-
- // 成功后使用cnpm install安装
- cnpm install
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。