Skip to content

Instantly share code, notes, and snippets.

@busse
Last active December 19, 2015 21:48
Show Gist options
  • Save busse/6022564 to your computer and use it in GitHub Desktop.
Save busse/6022564 to your computer and use it in GitHub Desktop.
for node.js, save text to file function
var fs = require('fs')
function saveTextToFile(filename, text) {
// assumes fs exists
fs.writeFile(filename, text, function(err) {
if(err) {
console.log(err);
} else {
console.log(filename + " - SAVE OK");
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment