Node Purely event-based I/O for V8 javascript. An example of a web server written with Node which responds with "Hello World" after waiting two seconds: new node.http.Server(function (req, res) { setTimeout(function () { res.sendHeader(200, [["Content-Type", "text/plain"]]); res.sendBody("Hello World"); res.finish(); }, 2000); }).listen(8000); puts("Server running at http://127.0.0.1:8000/"); To
{{#tags}}- {{label}}
{{/tags}}