0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 15:06:33 +01:00
nodejs/test_http.js

8 lines
222 B
JavaScript
Raw Normal View History

new node.http.Server(function (req, res) {
setTimeout(function () {
res.sendHeader(200, [["Content-Type", "text/plain"]]);
res.sendBody("Hello World");
res.finish();
}, 1000);
2009-05-14 17:36:25 +02:00
}).listen(8000, "localhost");