Electron 学习笔记启用Nodejs环境1234567891011const createWindow = () => { // Create the browser window. const mainWindow = new BrowserWindow({ width: 800, height: 600, webPreferences: { preload: path.join(__dirname, 'preload.js'), nodeIntegration:true, contextIsolation:false, }, });