Created
January 5, 2014 08:02
-
-
Save umidjons/8265657 to your computer and use it in GitHub Desktop.
NodeJS: Write/Append into a file
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
var f='write.txt', | |
fs=require('fs'); | |
fs.writeFile(f,'Some text to write.',function(err){ | |
if(err) | |
console.error(err); | |
console.log('Written!'); | |
}); | |
fs.appendFile(f,'Some more text to append.',function(err){ | |
if(err) | |
console.error(err); | |
console.log('Appended!'); | |
}); |
Make it Sync. because it is first appending and then writting.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hey