Skip to content

Instantly share code, notes, and snippets.

@triacontane
Created November 9, 2016 15:30
Show Gist options
  • Save triacontane/8992baccfb35f985ec93107b8ced6c30 to your computer and use it in GitHub Desktop.
Save triacontane/8992baccfb35f985ec93107b8ced6c30 to your computer and use it in GitHub Desktop.
既定のブラウザで指定したリンクを開くスクリプト
var url = 'https://twitter.com/triacontane';
if (Utils.isNwjs()) {
var exec = require('child_process').exec;
switch (process.platform) {
case 'win32':
exec('rundll32.exe url.dll,FileProtocolHandler "' + url + '"');
break;
default:
exec('open "' + url + '"');
break;
}
} else {
window.open(url);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment