Escreva no arquivo, mas não substitua o nó FS.WriteFile

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