Answers for "nodejs append in a txt file"

7

How to append to a file in Node?

// Asynchronously:
const fs = require('fs');

fs.appendFile('message.txt', 'data to append', function (err) {
  if (err) throw err;
  console.log('Saved!');
});

// Synchronously:
const fs = require('fs');

fs.appendFileSync('message.txt', 'data to append');
Posted by: Guest on May-12-2020
3

Append text into a file nodejs

Synchronously

const fs = require('fs');

fs.appendFileSync('message.txt', 'data to append');
Posted by: Guest on March-16-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language