Skip to content

Instantly share code, notes, and snippets.

@baniol
Created May 8, 2014 06:39
Show Gist options
  • Save baniol/f177b0d22fcec1a55b53 to your computer and use it in GitHub Desktop.
Save baniol/f177b0d22fcec1a55b53 to your computer and use it in GitHub Desktop.
nodejs, appending data to file, write file
var writeData = JSON.stringify(data) + '@@||@@';
fs.appendFile('amq.log', writeData, function (err) {
// console.log(err);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment