Skip to content

Instantly share code, notes, and snippets.

@buritica
Created June 11, 2014 15:41
Show Gist options
  • Select an option

  • Save buritica/81d8d68aecf4aa72dfec to your computer and use it in GitHub Desktop.

Select an option

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