const { app, BrowserWindow, Menu } = require('electron'); function createWindow() { const win = new BrowserWindow({ width: 1200, height: 800, }); win.loadURL('https://bsd.pm/noiz/'); } Menu.setApplicationMenu(null); app.whenReady().then(createWindow);