Skip to content

Instantly share code, notes, and snippets.

@t57ser
Created December 15, 2023 08:43
Show Gist options
  • Save t57ser/1684784219cbd1f1a79df2733742e914 to your computer and use it in GitHub Desktop.
Save t57ser/1684784219cbd1f1a79df2733742e914 to your computer and use it in GitHub Desktop.
let { app, BrowserWindow, ipcMain, session} = require("electron")
const electron = require("electron");
function createWindow() {
let win = new BrowserWindow({
})
win.loadURL("https://www.example.com");
win.webContents.openDevTools({mode: "undocked"});
}
app.on("ready", createWindow)
app.on("window-all-closed", () => {
app.quit()
})
{
"main": "main.js",
"scripts": {
"start": "electron ."
},
"devDependencies": {
"electron": "24.0.0"
},
"dependencies": {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment