1 min read

Node.js Read File from Server

Now, showing you how to create an HTTP non-blocking server and how to read a file of the non-blocking filesystem.

 var http = require('http');  
 var fs = require('fs');  
 http.createServer(function(request, response) {  
  response.writeHead(200);  
  fs.readFile('index.html', function(err, contents) {  
   response.write(contents);  
   response.end();  
  });  
 }).listen(8080);  

Generate Request

 curl http://localhost:8080  
Share your Love

Leave a Reply

Your email address will not be published. Required fields are marked *