Skip to content

Instantly share code, notes, and snippets.

@Subash
Created January 21, 2026 07:48
Show Gist options
  • Select an option

  • Save Subash/52795627d86e8cd38788c3139f75d244 to your computer and use it in GitHub Desktop.

Select an option

Save Subash/52795627d86e8cd38788c3139f75d244 to your computer and use it in GitHub Desktop.
import { app, BrowserWindow } from "electron";
app.whenReady().then(() => {
const window = new BrowserWindow({
show: true,
width: 800,
height: 500
});
window.loadURL("devtools://devtools/bundled/devtools_app.html");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment