Ejemplo 1: leer texto en el archivo txt js
const fs = require('fs')
fs.readFile("File.txt", (err, data) => {
if (err) throw err;
console.log(data);
})
Ejemplo 2: leer archivo javascript
// As with JSON, use the Fetch API & ES6
fetch('something.txt')
.then(response => response.text())
.then(data => {
// Do something with your data
console.log(data);
});
Ejemplo 3: cómo cargar el archivo ext localt en js
const fileUrl = '' // provide file location
fetch(fileUrl)
.then( r => r.text() )
.then( t => console.log(t) )
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)