场景:做导出功能的时候要用上xlsx,正常npm install xlsx --save
问题描述:npm install时卡在sill idealTree buildDeps,,卡着不动
过程:在网上一顿百度试过好多种方法
1、切换taobao的镜像地址
npm config set registry https://registry.npm.taobao.org
自身试用情况:还是卡住不动
2、又切换了一个镜像地址
npm config set registry https://registry.npmmirror.com
自身试用情况:报错了npm ERR! code ERESOLVEnpm ERR! ERESOLVE could not resolve
如下图
然后结合试了一下,最终得出的解决方案如下
第一步
npm config set registry https://registry.npmmirror.com
第二步
npm install xlsx --save --force
希望能帮到你~