mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
9 lines
239 B
JavaScript
9 lines
239 B
JavaScript
p({hello: "world"});
|
|
new node.http.Server(function (msg) {
|
|
// setTimeout(function () {
|
|
msg.sendHeader(200, [["Content-Type", "text/plain"]]);
|
|
msg.sendBody("Hello World");
|
|
msg.finish();
|
|
// }, 1);
|
|
}).listen(8000, "localhost");
|