Skip to content

Instantly share code, notes, and snippets.

@ajduke
Created January 24, 2016 06:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ajduke/3c81b5281355c8140f28 to your computer and use it in GitHub Desktop.
Save ajduke/3c81b5281355c8140f28 to your computer and use it in GitHub Desktop.
fs.appendFile('myfile.txt', 'this content goes at end of the file', function(err){
if(err) {
console.log('Error is thrown', err); throw err;
}
console.log('data is appended !!');
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment