var http = require("http"); // Server URL: http://localhost:8888/ http.createServer(function(request, response) { response.writeHead(200, {"Content-Type": "text/plain"}); response.write("Hello World"); response.end(); }).listen(8888);
info at jsclasses dot org