demo_fs_update.js:
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!