To get a frameless window, simply set the frameless parameter to true when creating a new BrowserWindow , known as the Frameless API :
const {BrowserWindow} = require('electron'); let win = new BrowserWindow({ width: 800, height: 600, frame: false }); win.show();
Just show this window before you show your โmainโ application window when the application fires the ready event.
source share