Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2009-09-23 19:00:20 +0400
committerRyan Dahl <ry@tinyclouds.org>2009-09-23 19:00:20 +0400
commit2d256f34c5c8aa4243798e228052e7fa2d04632d (patch)
tree7c4b9b0295ef2ce61807e2cf2df04b0ac6a86b7a /doc/node.1
parent8c7babdf10dde35c71d097130daa670cd52d1160 (diff)
Change example at beginning of api.txt
Diffstat (limited to 'doc/node.1')
-rw-r--r--doc/node.110
1 files changed, 4 insertions, 6 deletions
diff --git a/doc/node.1 b/doc/node.1
index bd8e7b6b594..d553bb86303 100644
--- a/doc/node.1
+++ b/doc/node.1
@@ -13,17 +13,15 @@
.SH "NAME"
node - evented I/O for V8 javascript
.SH "SYNOPSIS"
-An example of a web server written with Node which responds with "Hello World" after waiting two seconds:
+An example of a web server written with Node which responds with "Hello World":
.sp
.sp
.RS 4
.nf
node\.http\.createServer(function (request, response) {
- setTimeout(function () {
- response\.sendHeader(200, {"Content\-Type": "text/plain"});
- response\.sendBody("Hello World");
- response\.finish();
- }, 2000);
+ response\.sendHeader(200, {"Content\-Type": "text/plain"});
+ response\.sendBody("Hello World\en");
+ response\.finish();
})\.listen(8000);
puts("Server running at http://127\.0\.0\.1:8000/");
.fi