1$ npm install opn
2
3//////////////////////////////////////////
4
5var opn = require('opn');
6
7// opens the url in the default browser
8opn('http://sindresorhus.com');
9
10// specify the app to open in
11opn('http://sindresorhus.com', {app: 'firefox'});