Skip to content

Instantly share code, notes, and snippets.

@mauriciomassaia
Created January 11, 2016 22:54
Show Gist options
  • Save mauriciomassaia/e3ec3d56828367f72c8a to your computer and use it in GitHub Desktop.
Save mauriciomassaia/e3ec3d56828367f72c8a to your computer and use it in GitHub Desktop.
Open the default browser via node.js
const spawn = require('child_process').spawn;
// open default browser
spawn('open', ['http://localhost:9000']);
console.log('running on http://localhost:9000');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment