Answers for "node js + create and write a file"

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

fs.writeFile('2pac.txt', 'Some other lyric', 'ascii', callback);
Posted by: Guest on March-15-2020

Code answers related to "node js + create and write a file"

Code answers related to "Javascript"

Browse Popular Code Answers by Language