Guest User

Untitled

a guest
Mar 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. var http=require("http");
  2. var fs=require("fs");
  3.  
  4. http.createServer(function (req,res) {
  5. fs.readFile("./index.html",function(err,html){
  6. res.writeHead(200,{"Content-Type":"text/html"});
  7. res.write(JSON.stringify({nombre:"Uriel",username:"uriel"}));
  8. res.end();
  9. }).listen(8000);
  10. });
Add Comment
Please, Sign In to add comment