问题复现
如果执行,npm install XXXX,出现了无法安装,一直等待,如何解决?
解决方法
1.先查看npm配置
npm config ls
2.设置prefix和cache(可选)
指定到node安装目录
npm config set prefix “D:\nodejs\node_global” //设置全局包目录
npm config set cache “D:\nodejs\node_cache” //设置缓存目录
3.设置npm数据源,通过registry更改,删除协议
npm config set registry https://registry.npmmirror.com
npm config delete strict-ssl
4.可以ls看一下配置,然后再执行一下install
npm config ls
npm install XXXX