Skip to content

Instantly share code, notes, and snippets.

@lgsunnyvale
Created November 14, 2012 02:36
Show Gist options
  • Save lgsunnyvale/4069932 to your computer and use it in GitHub Desktop.
Save lgsunnyvale/4069932 to your computer and use it in GitHub Desktop.
nodejs write to file
app.save = function() {
fs.writeFile("sample.json", JSON.stringify(app.get("json")), 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