Contact: aviboots(AT)netvision.net.il
39,845 questions
51,766 answers
573 users
const fs = require('fs') filename = "info.txt"; fs.appendFile(filename, 'The new text', function (err) { if (err) throw err; console.log('Append OK'); }); /* run: Append OK */