Skip to content

Instantly share code, notes, and snippets.

@KenoLeon
Created August 2, 2022 20:03
Show Gist options
  • Select an option

  • Save KenoLeon/fb5cd473a8560cbcb80d14f3590cf843 to your computer and use it in GitHub Desktop.

Select an option

Save KenoLeon/fb5cd473a8560cbcb80d14f3590cf843 to your computer and use it in GitHub Desktop.
Electron Hello World JS
const { app, BrowserWindow } = require('electron')
const createWindow = () => {
const win = new BrowserWindow({
width: 800,
height: 600,
})
win.loadFile('index.html')
}
app.whenReady().then(() => {
createWindow()
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment