Skip to content

Instantly share code, notes, and snippets.

@efeminella
Created March 5, 2012 21:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save efeminella/1981238 to your computer and use it in GitHub Desktop.
Save efeminella/1981238 to your computer and use it in GitHub Desktop.
Launch a file in a browser from node.js
// For example, launches 'app/index.html' : launch('app/index.html');
var launch = function(path) {
require('child_process' ).spawn('open', [path]);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment