本文主要是介绍【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
安装成功了!!!下面贴一张安装成功的截图:
这篇关于【Node.js】解决npm报错:RequestError: unable to verify the first certificate的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!