Answers for "node.js append to file"

2

Append text into a file nodejs

const fs = require('fs');

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

If message.txt doesnt exist, It will gonna create that too
Posted by: Guest on March-16-2021
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
1

javascript fs read

fs.readFile('/etc/passwd', (err, data) => {
  if (err) throw err;
  console.log(data);
});
Posted by: Guest on April-17-2020
0

create append files javascript node

var fs = require('fs');

fs.appendFile('mynewfile1.txt', 'Hello 
  content!', function (err) {
  if (err) throw err;
  console.log('Saved!');

  });
Posted by: Guest on July-18-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language