mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 15:06:33 +01:00
478e45a32f
This is more semantic, albeit unnecessary, usage. I think users will be able to remember the API more easily.
8 lines
222 B
JavaScript
8 lines
222 B
JavaScript
new node.http.Server(function (req, res) {
|
|
setTimeout(function () {
|
|
res.sendHeader(200, [["Content-Type", "text/plain"]]);
|
|
res.sendBody("Hello World");
|
|
res.finish();
|
|
}, 1000);
|
|
}).listen(8000, "localhost");
|