Skip to content

Instantly share code, notes, and snippets.

@salomvary
Created January 14, 2017 10:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save salomvary/5a4753f0719711576e0ee528fe4fd55c to your computer and use it in GitHub Desktop.
Save salomvary/5a4753f0719711576e0ee528fe4fd55c to your computer and use it in GitHub Desktop.
const {app, BrowserWindow} = require('electron')
app.on('ready', () => {
const win = new BrowserWindow()
win.loadURL('file://some/local/file.html')
// or
win.loadURL('http://example.com')
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment