问题描述:
npm使用淘宝镜像安装luckyExcel 一直停留在still…下载不下来
原因分析:
淘宝镜像已从registry.npm.taobao.org 改为https://registry.npmmirror.com
切换镜像后就能正常下载luckyExcel
解决方案:
// 1. 清空缓存
npm cache clean --force
// 2. 切换新源
npm config set registry https://registry.npmmirror.com
// 3. 可以正常安装需要的工具了
npm insatll luckyExcel
2024年1 月 22 日,淘宝原镜像域名(registry.npm.taobao.org)的 HTTPS 证书正式到期,导致旧的 npm 淘宝镜像在使用时出错了。
早在 2021 年,淘宝就发文称,npm 淘宝镜像已经从 registry.npm.taobao.org 切换到了 registry.npmmirror.com。旧域名也将于 2022 年 5 月 31 日停止服务(不过,直到 HTTPS 证书到期才真正不能用了)。