安装node.js 这个不说 官网 下一步下一步就是了
在命令行运行 node --version 有出现版本号就表示成功
然后安装electron
node install electron -g 表示全局安装
安装完成后 输入electron -v 有出现版本号就说明OK
新建目录(自定义)
然后建立3个文件:package.json index.js index.html
index.html
<!DOCTYPE html>
<head>
<title>Hello World</title>
<meta charset='utf-8'>
</head>
<div>Hello World</div>
</html>
index.js
const { app, BrowserWindow } = require('electron');
function createBrowser() {
win = new BrowserWindow({ width: 800, height: 600 });
win.loadFile('index.html');
win.on('closed', () => {
console.log('close');
win = null;
});
}
app.on('ready', createBrowser);
其中 在createBrowser函数中添加: win.webContents.openDevTools();可将调试控制台显示在页面上
package.json
{
"name":"first",
"version":"1.0.0",
"main":"index.js"
}
保存后 在命令行下 切换至代码所在目录 运行 electron . 这个'.'号表示当前目录
搞定