Skip to content

Instantly share code, notes, and snippets.

@nomeyer
Created February 10, 2016 16:36
Show Gist options
  • Save nomeyer/42e81b7ab3542d0cd874 to your computer and use it in GitHub Desktop.
Save nomeyer/42e81b7ab3542d0cd874 to your computer and use it in GitHub Desktop.
Append to a file in node.js
var fs = require('fs');
fs.appendFile(filePath, text, function(err) {
console.log('Error writing to file');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment