You are reading a single comment by @ghendo and its replies. Click here to read the full conversation.
  • hmm things get very complicated very quickly

    I tried

    var http = require("http");

    function onInit(){
    http.createServer(function (req, res) {
    res.writeHead(200);
    res.end("Hello World");
    }).listen(8080);

    }

    but didnt work :(

About

Avatar for ghendo @ghendo started