Skip to content

Instantly share code, notes, and snippets.

@buritica
Created June 11, 2014 15:41
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 buritica/81d8d68aecf4aa72dfec to your computer and use it in GitHub Desktop.
Save buritica/81d8d68aecf4aa72dfec to your computer and use it in GitHub Desktop.
var fs = require('fs');
var file = './index.html';
if (process.argv.length > 2) {
file = './' + process.argv[2];
}
var html = fs.readFileSync(file, 'utf8');
console.log(JSON.stringify(html));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment