How to use the electron.shell.openExternal function in electron

To help you get started, we’ve selected a few electron examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github mariorodeghiero / git-commands / app / menu.js View on Github external
click() {
              shell.openExternal('https://github.com/mariorodeghiero/git-commands/issues');
            }
          }
github bhj / karaoke-forever / server / electron.js View on Github external
function launchBrowser () {
  if (status.url) {
    shell.openExternal(status.url)
  }
}
github marktext / marktext / src / renderer / commands / index.js View on Github external
execute: async () => {
      shell.openExternal('https://github.com/marktext/marktext/blob/develop/docs/MARKDOWN_SYNTAX.md')
    }
  },
github FermORG / FermionJS / app / menu.js View on Github external
        { label: 'Search Issues', click() { shell.openExternal('https://github.com/atom/electron/issues'); } }
      ]
github CopyTranslator / CopyTranslator / src / views / Focus.vue View on Github external
baidu() {
    shell.openExternal(
      `https://www.baidu.com/s?ie=utf-8&wd=${this.getModifiedText()}`
    );
  }
github foucdeg / x-plane-map-electron / setup / components / ExternalLink.jsx View on Github external
openLink(e) {
    e.preventDefault();
    shell.openExternal(this.props.href);
  }
github shawjia / geektime-desktop / src / app / menu.js View on Github external
click() {
              shell.openExternal('http://electron.atom.io');
            }
          },
github jackypan1989 / pokemon-go-desktop / main.development.js View on Github external
click() {
          shell.openExternal('https://discuss.atom.io/c/electron');
        }
      }, {
github moodlehq / moodlemobile2 / desktop / electron.js View on Github external
click() {
                        shell.openExternal('https://docs.moodle.org/en/Moodle_Mobile');
                    }
                }
github hunterlong / neureal-wallet / js / main.js View on Github external
function OpenGithubReleases() {
  shell.openExternal('https://github.com/hunterlong/neureal-wallet/releases')
}