'How to open a link in default browser in an electron app

I want to know how to open a web link in the default browser when clicked on a button in an electron app. Can anyone help me?



Solution 1:[1]

At the top of your main.js, make sure the following variables are defined:

const ipc = ipcMain;
const { app, BrowserWindow, ipcMain, webContents } = require('electron');

Inside your button onclick function (in the renderer), use the following:

ipc.send('SomeEvent');

Also make sure the following are defined in your renderer

const { ipcRenderer } = require('electron');
const ipc = ipcRenderer;

Then, use the following to open in the external browser (it will open in the user's default)

ipc.on('SomeEvent', ()=>{
  require('electron').shell.openExternal('<LINK_HERE>');
})

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1