Result Size: 625 x 571
demo_fs_update.js:
x
 
var fs = require('fs');
//append content at the end of the file:
fs.appendFile('mynewfile1.txt', ' This is my text.', function (err) {
  if (err) throw err;
  console.log('Updated!');
});
C:\Users\My Name>node demo_fs_update.js
Updated!