centos 7.6 安装 electron

1. 安装 nodejs

参见 https://blog.csdn.net/emailtoi/article/details/100933030

2. 替换 npm 为淘宝的 cnmp

由于那个原因(墙,你懂的。此处应有脏话)。淘宝镜像地址 https://npm.taobao.org/

npm install -g cnpm --registry=https://registry.npm.taobao.org

参考自: https://electronjs.org/docs/tutorial/installation

3. 安装 electron

使用 cnpm

cnpm install -g electron

 

验证是否安装成功

electron -v

4.  (可选)安装 electron-forge

类似于傻瓜开发包的Electron工具整合项目。

cnpm install -g electron-forge

参考自: https://github.com/electron-userland/electron-forge

你可能感兴趣的:(electron)