You are reading a single comment by @MaBe and its replies. Click here to read the full conversation.
  • try this

    var http = require("http");
    http.createServer(function (req, res) {
      res.writeHead(200);
      res.end("Hello World"); 
    }).listen(8080);
    save();
    
About

Avatar for MaBe @MaBe started