Skip to content

Instantly share code, notes, and snippets.

@froggr
Forked from umidjons/write-append-file.js
Last active August 29, 2015 14:14
Show Gist options
  • Save froggr/7aba077b0b14db748a07 to your computer and use it in GitHub Desktop.
Save froggr/7aba077b0b14db748a07 to your computer and use it in GitHub Desktop.
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!');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment