npm安装卡住问题(最新版)

npm安装卡住问题(最新版)

背景:

​ 最近这两天用npm安装一些包的时候,发现一直卡住:
报错:

idealTree:npm: sill idealTree buildDeps

之前能用的现在不能用了,我一想,是不是源头的问题,还真是,之前设置的源头是:

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

但是,现在好像不能用了,需要更换安装源头:

npm安装:
  • 获取当前源
 npm config get registry  

npm安装卡住问题(最新版)_第1张图片

可以看到我已经更换完毕了,如果跟我的不一样,需要执行下面命令更新源

npm config set registry=https://registry.npmmirror.com 
 
  • 执行以下命令查看是否配置成功
npm config get registry
cnpm安装:
npm install -g cnpm --registry=https://registry.npmmirror.com 

现在我们可以使用cnpm安装,代替npm安装

cnpm install -g nodemon
cnpm install -g 包  //-g 代表全局安装

你可能感兴趣的:(web前端,npm,前端,node.js)