๐Ÿ“ฆ microsoft / playwright

๐Ÿ“„ electron-window-app.js ยท 12 lines
1
2
3
4
5
6
7
8
9
10
11
12const { app, BrowserWindow } = require('electron');

app.whenReady().then(() => {
  const win = new BrowserWindow({
    width: 800,
    height: 600,
  });
  win.loadURL('about:blank');
})

app.on('window-all-closed', e => e.preventDefault());