Skip to content

Instantly share code, notes, and snippets.

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 maskaravivek/473a933f11dc2c366f0fcdda577232b2 to your computer and use it in GitHub Desktop.
Save maskaravivek/473a933f11dc2c366f0fcdda577232b2 to your computer and use it in GitHub Desktop.
const { ipcMain } = require('electron')
ipcMain.on('hotspot-event', (event, arg) => {
event.returnValue = 'Message received!'
require('electron').shell.openExternal(`https://explorer.helium.com/hotspots/${arg}`);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment