Menulis ke file tetapi jangan menimpa node fs.writefile

fs.appendFile("file.txt", 'Text',function(err){
if(err) throw err;
console.log('IS WRITTEN')
});
Faithful Fox