Skip to content

Instantly share code, notes, and snippets.

@aarondai
Created July 16, 2014 21:50
Show Gist options
  • Save aarondai/e965816e8f78c59e11a5 to your computer and use it in GitHub Desktop.
Save aarondai/e965816e8f78c59e11a5 to your computer and use it in GitHub Desktop.
NodeJS:Write to File
var fs = require('fs');
fs.writeFile("/tmp/test", "Hey there!", function(err) {
if(err) {
console.log(err);
} else {
console.log("The file was saved!");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment