Answers for "add text to txt file js"

4

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
3

javascript store text file into string

var fs = require("fs");
fs.readFile("./mytext.txt", function(text){
    var textByLine = text.split("\n")
});
Posted by: Guest on November-01-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language