【Node.js】解决npm报错:RequestError: unable to verify the first certificate
1. 问题简述
帖主从nodejs官网下载安装nodejs后,发现使用以下命令安装electron会报错:
npm install electron
报错信息如下:
npm ERR! RequestError: unable to verify the first certificate
2. 解决方案
网上列举的方案,无外乎:
- 设置strict-ssl
- 更换国内镜像源
- 修改ca
最后经过帖主实测屁用没有!!!
后来,无意中看到了这个帖子,文中提到了淘宝镜像包命令行管理工具cnpm,我突然彻悟:国内源既然有对应的cnpm,当然要用国内版的npm!!!
2.1. 换源
npm config set registry https://registry.npm.taobao.org
2.2. 安装cnpm
npm install cnpm -g
2.3. 使用cnpm安装electron
cnpm install electron
安装成功了!!!下面贴一张安装成功的截图: