Skip to content

Instantly share code, notes, and snippets.

@brandonpittman
Created January 23, 2014 07:04
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 brandonpittman/8574200 to your computer and use it in GitHub Desktop.
Save brandonpittman/8574200 to your computer and use it in GitHub Desktop.
read file with node.js
fs.readFile('test.md', {encoding: 'UTF-8'},function (err, data) {
if (err) throw err;
console.log(data);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment