0
Q:

node read file

// load fs
const fs = require("fs");
// read the file
const content = fs.readFileSync("./my_file.txt");
// print it
console.log(content.toString());
2
const fs = require("fs");

// __dirname means relative to script. Use "./data.txt" if you want it relative to execution path.
fs.readFile(__dirname + "/data.txt", (error, data) => {
    if(error) {
        throw error;
    }
    console.log(data.toString());
});
2
var http = require('http');
var fs = require('fs');
http.createServer(function 
  (req, res) {
  fs.readFile('demofile1.html', function(err, data) {

      
  res.writeHead(200, {'Content-Type': 'text/html'});
    res.write(data);
    
  res.end();
  });
}).listen(8080); 
3
var content;
fs.readFile('./Index.html', function read(err, data) {
    if (err) {
        throw err;
    }
    content = data;
});
console.log(content);
3

New to Communities?

Join the community