Skip to content

Instantly share code, notes, and snippets.

@fujisawakoichi
Created January 16, 2017 08:10
Show Gist options
  • Save fujisawakoichi/396cfe7aabe5eb49ecf4d74042b12b68 to your computer and use it in GitHub Desktop.
Save fujisawakoichi/396cfe7aabe5eb49ecf4d74042b12b68 to your computer and use it in GitHub Desktop.
Electronで外部ブラウザを開く方法
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Electron</title>
<script>
function urlopen(url){
const {shell} = require('electron');
shell.openExternal(url);
}
</script>
</head>
<body>
<div onClick="urlopen('https://github.com')">クリック</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment