Skip to content

Instantly share code, notes, and snippets.

@ajbetteridge
Forked from davglass/gist:876882
Created November 29, 2011 14:33
Show Gist options
  • Save ajbetteridge/1405002 to your computer and use it in GitHub Desktop.
Save ajbetteridge/1405002 to your computer and use it in GitHub Desktop.
Javascript: Filesystem read file
var fs = require('fs');
var str = fs.readFileSync('./test.html', encoding='utf8');
YUI().use('node', function(Y) {
Y.config.doc.innerHTML = str;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment