Answers for "how to create a file in node js"

11

Writing files in Node.js

const fs = require('fs');

fs.writeFile("/tmp/test", "Hey there!", function(err) {
    if(err) {
        return console.log(err);
    }
    console.log("The file was saved!");
}); 

// Or
fs.writeFileSync('/tmp/test-sync', 'Hey there!');
Posted by: Guest on August-08-2020
1

create file in nodejs

fs.writeFile('<fileName>',<contenet>, callbackFunction)
Posted by: Guest on August-08-2021
0

create file node javascript

var fs = require('fs');

fs.open('mynewfile2.txt', 'w', function (err, 
  file) {
  if (err) throw err;
  console.log('Saved!');
});
Posted by: Guest on September-09-2021
3

fs create or edit file

//Edit file or creates if doesnt exist
 const fs = require('fs');
 fs.appendFile(‘<fileName>’,<content>,callbackFunction)
Posted by: Guest on April-01-2020
1

writefile in node js

// write_stream.js

const fs = require('fs');

let writeStream = fs.createWriteStream('secret.txt');

// write some data with a base64 encoding
writeStream.write('aef35ghhjdk74hja83ksnfjk888sfsf', 'base64');

// the finish event is emitted when all data has been flushed from the stream
writeStream.on('finish', () => {
    console.log('wrote all data to file');
});

// close the stream
writeStream.end();
Posted by: Guest on March-15-2020

Code answers related to "how to create a file in node js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language