Created
January 24, 2016 06:22
-
-
Save ajduke/3c81b5281355c8140f28 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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