when I used .txt worked fine once wrote in the data to append file;
const fs =require('fs'); fs.appendFile('vzgo.txt', 'data to append', (err) => { if (err) throw err; console.log('The "data to append" was appended to file!'); }); but when I use the .js ending then it works endlessly;
const fs =require('fs'); fs.appendFile('vzgo.js', 'data to append', (err) => { if (err) throw err; console.log('The "data to append" was appended to file!'); });
nodemon, it has anignoreoption where you need to transfer the file (s) that you do not need to tracknodemon --ignore './vzgo.js' --exec ./app.js- overthesanity