Electron 学习笔记

启用Nodejs环境

1
2
3
4
5
6
7
8
9
10
11
const createWindow = () => {
// Create the browser window.
const mainWindow = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
preload: path.join(__dirname, 'preload.js'),
nodeIntegration:true,
contextIsolation:false,
},
});