Differences between revisions 4 and 5
Revision 4 as of 2023-03-02 17:34:54
Size: 881
Comment:
Revision 5 as of 2023-03-02 17:37:56
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


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.


See also

Electron API for app


CategoryRicottone

Node/Electron/App (last edited 2023-03-02 17:39:24 by DominicRicottone)