Skip to content

Instantly share code, notes, and snippets.

@mnquintana
Created January 29, 2018 21:46
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 mnquintana/0832f2b1ea0e2be63277d126da99c92a to your computer and use it in GitHub Desktop.
Save mnquintana/0832f2b1ea0e2be63277d126da99c92a to your computer and use it in GitHub Desktop.
Path 1: The Shortcut
// ==============
// Main process
// ==============
const mainWindow = new BrowserWindow({ width: 800, height: 800 });
mainWindow.loadURL(‘https://<remote-web-app-goes-here>’);
// ==============
// Guest page (remote web app)
// ==============
const {remote} = require(‘electron’);
remote.app.setBadgeCount(9001);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment