Size: 881
Comment:
|
Size: 956
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 13: | Line 13: |
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')); |
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.