Size: 789
Comment:
|
Size: 956
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 12: | Line 12: |
const { app } = require('electron'); | const { app, BrowserWindow } = require('electron'); const path = require('path'); |
Line 23: | Line 24: |
preload: 'preload.js', | preload: path.join(__dirname, 'preload.js'), |
Line 27: | Line 28: |
win.loadFile('index.html'); | win.loadFile(path.join(__dirname, 'index.html')); |
Line 45: | Line 46: |
For details on `BrowserWindow`, see [[Node/Electron/BrowserWindow|here]]. |
Electron App
Contents
App
const { app, BrowserWindow } = require('electron'); const path = require('path'); var win; function initializeWindow() { win = new BrowserWindow({ width: 800, height: 600, webPreferences: { contextIsolation: true, nodeIntegration: false, preload: path.join(__dirname, 'preload.js'), } }); win.loadFile(path.join(__dirname, 'index.html')); win.on('closed', () => { win = null; }); }; app.on('ready', initializeWindow); app.on('window-all-closed', () => { if (process.platform !== "darwin") app.quit(); }); app.on('activate', () => { if (win === null) initializeWindow(); });
For details on BrowserWindow, see here.