Answers for "open a text file in js"

1

read text in txt file js

const fs = require('fs')

fs.readFile("File.txt", (err, data) => {
	if (err) throw err;
	console.log(data);
})
Posted by: Guest on April-03-2021
2

how to load localt ext file in js

const fileUrl = '' // provide file location

fetch(fileUrl)
   .then( r => r.text() )
   .then( t => console.log(t) )
Posted by: Guest on June-03-2020
1

javascript read file lines into array vanilla

const fileList = event.target.files;
let fileContent = "";

const fr = new FileReader();
fr.onload = () => {
  fileContent = fr.result;
  console.log('Commands', fileContent);
}

fr.readAsText(fileList[0]);
Posted by: Guest on June-29-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language