November 2019
Beginner
436 pages
8h 52m
English
Let's try to hide the main application window on startup and show it only when it's invoked from the system tray menu:
function createWindow() { win = new BrowserWindow({ transparent: true, frame: false, webPreferences: { nodeIntegration: true } }); win.hide(); win.loadURL(`http://localhost:3000`); win.on('closed', () => { win = null; }); }
function createTray() ...
Read now
Unlock full access