2009-05-13 17:46:00 +02:00
|
|
|
|
|
|
|
<html>
|
2009-05-14 15:55:28 +02:00
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
background: #22252a;
|
|
|
|
color: #eee;
|
|
|
|
font-size: 16pt;
|
|
|
|
line-height: 150%;
|
|
|
|
font-family: times, Times New Roman, times-roman, georgia, serif;
|
|
|
|
}
|
|
|
|
#content {
|
|
|
|
max-width: 30em;
|
|
|
|
margin: 0 0 5em 10em;
|
|
|
|
}
|
|
|
|
#toc {
|
|
|
|
position: fixed;
|
|
|
|
top: 2em;
|
|
|
|
left: 0;
|
|
|
|
width: 10em;
|
2009-05-20 16:02:53 +02:00
|
|
|
font-size: 14pt;
|
|
|
|
line-height: 120%;
|
2009-05-14 15:55:28 +02:00
|
|
|
}
|
|
|
|
#toc ol {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
padding-left: 1em;
|
|
|
|
}
|
|
|
|
#toc ol li {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2009-05-20 16:02:53 +02:00
|
|
|
#toc a { color: #aaa; }
|
2009-05-14 15:55:28 +02:00
|
|
|
|
2009-05-17 15:54:06 +02:00
|
|
|
h1, h2, h3, h4 {
|
2009-05-18 23:21:11 +02:00
|
|
|
color: #B0C4DE;
|
2009-05-17 15:54:06 +02:00
|
|
|
margin: 2em 0;
|
2009-05-14 15:55:28 +02:00
|
|
|
}
|
|
|
|
|
2009-05-17 15:54:06 +02:00
|
|
|
h1 a { color: inherit; }
|
2009-05-14 23:47:21 +02:00
|
|
|
|
2009-05-14 15:55:28 +02:00
|
|
|
|
|
|
|
pre, code {
|
|
|
|
font-family: monospace;
|
2009-05-18 23:21:11 +02:00
|
|
|
font-size: 14pt;
|
2009-05-14 20:34:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pre {
|
2009-05-17 15:54:06 +02:00
|
|
|
padding-left: 1em;
|
|
|
|
border-left: 1px solid #444;
|
2009-05-14 15:55:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dl {
|
|
|
|
}
|
|
|
|
|
|
|
|
dt {
|
|
|
|
}
|
|
|
|
|
|
|
|
dd {
|
|
|
|
margin: 1em 0;
|
|
|
|
margin-left: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
a { color: #cd5; text-decoration: none; }
|
|
|
|
a:hover { text-decoration: underline; }
|
|
|
|
|
2009-05-14 20:34:14 +02:00
|
|
|
.highlight {
|
|
|
|
background: #733;
|
|
|
|
padding: 0.2em 0;
|
|
|
|
}
|
|
|
|
|
2009-05-17 15:54:06 +02:00
|
|
|
</style>
|
2009-05-18 19:33:05 +02:00
|
|
|
<script type="text/javascript" src="sh_main.js"></script>
|
2009-05-17 15:54:06 +02:00
|
|
|
<script type="text/javascript" src="sh_javascript.min.js"></script>
|
|
|
|
<link type="text/css" rel="stylesheet" href="sh_vim-dark.css">
|
|
|
|
|
2009-05-14 15:55:28 +02:00
|
|
|
<title>node.js</title>
|
2009-05-17 15:54:06 +02:00
|
|
|
<body onload="sh_highlightDocument();">
|
2009-05-14 15:55:28 +02:00
|
|
|
<div id="toc">
|
|
|
|
<ol>
|
|
|
|
<li><a href="#benchmarks">Benchmarks</a></li>
|
|
|
|
<li><a href="#download">Download</a></li>
|
|
|
|
<li><a href="#install">Build</a></li>
|
|
|
|
<li><a href="#api">API</a>
|
2009-05-13 17:46:00 +02:00
|
|
|
<ol>
|
2009-05-14 15:55:28 +02:00
|
|
|
<li><a href="#timers">Timers</a>
|
2009-05-18 23:21:11 +02:00
|
|
|
<li><a href="#files">File System I/O</a>
|
|
|
|
<li><a href="#tcp">TCP</a>
|
2009-05-20 16:02:53 +02:00
|
|
|
<ol>
|
|
|
|
<li><a href="#tcp_server">Server</a>
|
|
|
|
<li><a href="#tcp_connection">Connection</a>
|
|
|
|
</ol>
|
2009-05-18 23:21:11 +02:00
|
|
|
<li><a href="#http">HTTP</a>
|
2009-05-13 17:46:00 +02:00
|
|
|
<ol>
|
2009-05-14 15:55:28 +02:00
|
|
|
<li><a href="#http_server">Server</a>
|
2009-05-20 16:02:53 +02:00
|
|
|
<ol>
|
|
|
|
<li><a href="#http_server_request">Request</a>
|
|
|
|
<li><a href="#http_server_response">Response</a>
|
|
|
|
</ol>
|
2009-05-14 15:55:28 +02:00
|
|
|
<li><a href="#http_client">Client</a>
|
2009-05-20 16:02:53 +02:00
|
|
|
<ol>
|
|
|
|
<li><a href="#http_client_request">Request</a>
|
|
|
|
<li><a href="#http_client_response">Response</a>
|
|
|
|
</ol>
|
2009-05-13 17:46:00 +02:00
|
|
|
</ol>
|
2009-05-14 15:55:28 +02:00
|
|
|
<li><a href="#modules">Modules</a>
|
2009-05-13 17:46:00 +02:00
|
|
|
</ol>
|
2009-05-14 15:55:28 +02:00
|
|
|
</li>
|
|
|
|
</ol>
|
|
|
|
</div>
|
|
|
|
<div id="content">
|
2009-05-13 17:46:00 +02:00
|
|
|
|
2009-05-14 15:55:28 +02:00
|
|
|
<h1><a href="http://tinyclouds.org/node">Node</a></h1>
|
2009-05-13 17:46:00 +02:00
|
|
|
|
2009-05-20 13:42:26 +02:00
|
|
|
<p id="introduction">Purely asynchronous I/O for <a
|
2009-05-14 20:34:14 +02:00
|
|
|
href="http://code.google.com/p/v8/">V8 javascript</a>.
|
|
|
|
|
2009-05-18 19:33:05 +02:00
|
|
|
<p>This is an example of a web server written with Node which responds with
|
|
|
|
"Hello World" after waiting two seconds:
|
|
|
|
|
2009-05-17 15:54:06 +02:00
|
|
|
<pre class="sh_javascript">new node.http.Server(function (req, res) {
|
2009-05-13 17:46:00 +02:00
|
|
|
setTimeout(function () {
|
2009-05-17 15:54:06 +02:00
|
|
|
res.sendHeader(200, [["Content-Type", "text/plain"]]);
|
|
|
|
res.sendBody("Hello World");
|
|
|
|
res.finish();
|
2009-05-13 17:46:00 +02:00
|
|
|
}, 2000);
|
2009-05-17 15:54:06 +02:00
|
|
|
}).listen(8000);
|
2009-05-18 19:33:05 +02:00
|
|
|
puts("Server running at http://127.0.0.1:8000/");</pre>
|
|
|
|
|
2009-05-18 23:21:11 +02:00
|
|
|
<p>
|
2009-05-20 13:42:26 +02:00
|
|
|
Node is an evented sandbox where users cannot execute blocking I/O.
|
|
|
|
This is
|
|
|
|
already natural for Javascript programmers, as the DOM is almost entirely
|
2009-05-20 16:02:53 +02:00
|
|
|
asynchronous. The goal is to provide an easy way to create
|
2009-05-20 13:42:26 +02:00
|
|
|
efficient network applications.
|
2009-05-18 23:21:11 +02:00
|
|
|
|
|
|
|
|
2009-05-20 13:42:26 +02:00
|
|
|
<p> See <a href="#api">the API documentation</a> for more examples.
|
2009-05-14 23:47:21 +02:00
|
|
|
|
2009-05-20 13:42:26 +02:00
|
|
|
<p> Node is free to <a href="#download">download</a>, <a
|
|
|
|
href="#api">use</a>, and <a href="#modules">build upon</a>.</p>
|
2009-05-18 23:21:11 +02:00
|
|
|
|
|
|
|
|
2009-05-14 23:47:21 +02:00
|
|
|
|
2009-05-13 17:46:00 +02:00
|
|
|
|
2009-05-14 15:55:28 +02:00
|
|
|
<h2 id="benchmarks">Benchmarks</h2>
|
2009-05-13 17:46:00 +02:00
|
|
|
|
2009-05-14 15:55:28 +02:00
|
|
|
<p> TODO
|
2009-05-13 17:46:00 +02:00
|
|
|
|
2009-05-14 15:55:28 +02:00
|
|
|
<h2 id="download">Download</h2>
|
2009-05-13 17:46:00 +02:00
|
|
|
|
2009-05-14 15:55:28 +02:00
|
|
|
<p> TODO
|
2009-05-13 17:46:00 +02:00
|
|
|
|
2009-05-14 15:55:28 +02:00
|
|
|
<h2 id="build">Build</h2>
|
2009-05-13 17:46:00 +02:00
|
|
|
|
2009-05-17 15:54:06 +02:00
|
|
|
<pre>./configure
|
2009-05-14 15:55:28 +02:00
|
|
|
make
|
|
|
|
make install</pre>
|
2009-05-13 17:46:00 +02:00
|
|
|
|
|
|
|
|
2009-05-20 16:02:53 +02:00
|
|
|
<h2 id="api">API</h2>
|
2009-05-13 17:46:00 +02:00
|
|
|
|
2009-05-17 15:54:06 +02:00
|
|
|
<p>Conventions: Callbacks are object members which are prefixed with
|
|
|
|
<code class="sh_javascript">on</code>. All methods and members are camel cased. Constructors
|
|
|
|
always have a capital first letter.
|
2009-05-13 17:46:00 +02:00
|
|
|
|
2009-05-14 15:55:28 +02:00
|
|
|
<h3 id="timers">Timers</h3>
|
|
|
|
|
2009-05-17 15:54:06 +02:00
|
|
|
<p>Timers allow one to schedule execution of a function for a later time.
|
|
|
|
|
|
|
|
<p>Timers in Node work as they do in the browser:
|
2009-05-19 00:01:11 +02:00
|
|
|
<code class="sh_javascript">setTimeout()</code>,
|
|
|
|
<code class="sh_javascript">setInterval()</code>,
|
|
|
|
<code class="sh_javascript">clearTimeout()</code>,
|
|
|
|
<code class="sh_javascript">clearInterval()</code>.
|
2009-05-17 15:54:06 +02:00
|
|
|
See <a
|
|
|
|
href="https://developer.mozilla.org/en/DOM/window.setTimeout">Mozilla's
|
|
|
|
documentation</a> for more information.
|
2009-05-14 15:55:28 +02:00
|
|
|
|
|
|
|
<h3 id="files">File System</h3>
|
|
|
|
|
2009-05-18 19:33:05 +02:00
|
|
|
<h3 id="tcp"><code>node.tcp</code></h3>
|
2009-05-13 17:46:00 +02:00
|
|
|
|
2009-05-18 19:33:05 +02:00
|
|
|
<h3 id="http"><code>node.http</code></h3>
|
2009-05-13 17:46:00 +02:00
|
|
|
|
2009-05-17 15:54:06 +02:00
|
|
|
<p> Node provides a web server and client interface. The interface is rather
|
2009-05-20 13:42:26 +02:00
|
|
|
low-level but complete (it does not limit you from
|
|
|
|
any of HTTP's features). The interface abstracts the transfer-encoding (i.e.
|
|
|
|
chunked or identity), message boundaries, and persistent connections.
|
2009-05-18 19:33:05 +02:00
|
|
|
|
|
|
|
<h4 id="http_server"><code class="sh_javascript">node.http.Server</code></h4>
|
2009-05-13 17:46:00 +02:00
|
|
|
|
2009-05-14 15:55:28 +02:00
|
|
|
<dl>
|
2009-05-19 00:01:11 +02:00
|
|
|
<dt><code class="sh_javascript">new node.http.Server(request_handler, options);</code></dt>
|
2009-05-14 15:55:28 +02:00
|
|
|
<dd>
|
2009-05-18 19:33:05 +02:00
|
|
|
<p>Creates a new web server.
|
|
|
|
|
|
|
|
<p>
|
|
|
|
The <code>options</code> argument is optional.
|
|
|
|
The <code
|
|
|
|
class="sh_javascript">options</code> argument accepts the same values
|
|
|
|
as the options argument for <code
|
|
|
|
class="sh_javascript">node.tcp.Server</code> does.
|
|
|
|
|
|
|
|
<p>The <code class="sh_javascript">request_handler</code> is a
|
|
|
|
callback which is made on each request with a
|
|
|
|
<code>ServerRequest</code> and
|
|
|
|
<code>ServerResponse</code> arguments.
|
2009-05-13 17:46:00 +02:00
|
|
|
|
2009-05-14 15:55:28 +02:00
|
|
|
</dd>
|
|
|
|
|
2009-05-17 15:54:06 +02:00
|
|
|
<dt><code class="sh_javascript">server.listen(port, hostname)</code>
|
2009-05-14 15:55:28 +02:00
|
|
|
<dd>
|
|
|
|
<p>Begin accepting connections on the specified port and hostname. If the
|
|
|
|
hostname is omitted, the server will accept connections directed to any
|
|
|
|
address.
|
|
|
|
</dd>
|
|
|
|
|
2009-05-17 15:54:06 +02:00
|
|
|
<dt><code class="sh_javascript">server.close()</code>
|
2009-05-14 15:55:28 +02:00
|
|
|
<dd>
|
2009-05-19 00:01:11 +02:00
|
|
|
<p>Stops the server from accepting new connections.
|
2009-05-14 15:55:28 +02:00
|
|
|
</dd>
|
|
|
|
</dl>
|
|
|
|
|
|
|
|
|
2009-05-18 19:33:05 +02:00
|
|
|
<h4 id="http_server_request"><code class="sh_javascript">node.http.ServerRequest</code></h4>
|
2009-05-14 15:55:28 +02:00
|
|
|
|
2009-05-18 19:33:05 +02:00
|
|
|
<p> This object is created internally by a HTTP server—not by the user.
|
|
|
|
It is passed as the first argument to the <code
|
|
|
|
class="sh_javascript">request_handler</code> callback.
|
2009-05-17 15:54:06 +02:00
|
|
|
|
2009-05-14 15:55:28 +02:00
|
|
|
<dl>
|
2009-05-18 19:33:05 +02:00
|
|
|
<dt><code class="sh_javascript">req.method</code>
|
2009-05-17 15:54:06 +02:00
|
|
|
<dd>The request method as a string. Read only. Example: <code class="sh_javascript">"GET"</code>,
|
|
|
|
<code class="sh_javascript">"DELETE"</code>.</dd>
|
2009-05-14 15:55:28 +02:00
|
|
|
|
2009-05-18 19:33:05 +02:00
|
|
|
<dt><code class="sh_javascript">req.uri</code>
|
2009-05-20 13:42:26 +02:00
|
|
|
<dd> Request URI. (Object.)
|
2009-05-18 19:33:05 +02:00
|
|
|
<dt><code>req.uri.anchor</code>
|
|
|
|
<dt><code>req.uri.query</code>
|
|
|
|
<dt><code>req.uri.file</code>
|
|
|
|
<dt><code>req.uri.directory</code>
|
|
|
|
<dt><code>req.uri.path</code>
|
|
|
|
<dt><code>req.uri.relative</code>
|
|
|
|
<dt><code>req.uri.port</code>
|
|
|
|
<dt><code>req.uri.host</code>
|
|
|
|
<dt><code>req.uri.password</code>
|
|
|
|
<dt><code>req.uri.user</code>
|
|
|
|
<dt><code>req.uri.authority</code>
|
|
|
|
<dt><code>req.uri.protocol</code>
|
|
|
|
<dt><code>req.uri.queryKey</code>
|
2009-05-20 13:42:26 +02:00
|
|
|
<dt><code>req.uri.toString()</code>, <code>req.uri.source</code>
|
2009-05-19 00:01:11 +02:00
|
|
|
<dd> The original URI found in the status line.
|
2009-05-18 19:33:05 +02:00
|
|
|
|
|
|
|
<dt><code class="sh_javascript">req.headers</code>
|
2009-05-14 15:55:28 +02:00
|
|
|
<dd>The request headers expressed as an array of 2-element arrays. Read only.
|
|
|
|
Example:
|
2009-05-17 15:54:06 +02:00
|
|
|
<pre class="sh_javascript">
|
2009-05-14 15:55:28 +02:00
|
|
|
[ ["Content-Length", "123"]
|
|
|
|
, ["Content-Type", "text/plain"]
|
|
|
|
, ["Connection", "keep-alive"]
|
|
|
|
, ["Accept", "*/*"]
|
|
|
|
]
|
|
|
|
</pre>
|
|
|
|
|
2009-05-20 16:05:31 +02:00
|
|
|
<dt><code class="sh_javascript">req.httpVersion</code></dt>
|
2009-05-17 15:54:06 +02:00
|
|
|
<dd>The HTTP protocol version as a string. Read only. Examples: <code class="sh_javascript">"1.1"</code>,
|
|
|
|
<code class="sh_javascript">"1.0"</code>
|
2009-05-14 15:55:28 +02:00
|
|
|
|
2009-05-18 19:33:05 +02:00
|
|
|
<dt><code class="sh_javascript">req.onBody</code></dt>
|
2009-05-14 15:55:28 +02:00
|
|
|
<dd>Callback. Should be set by the user to be informed of when a piece
|
|
|
|
of the message body is received. Example:
|
2009-05-17 15:54:06 +02:00
|
|
|
<pre class="sh_javascript">
|
2009-05-18 19:33:05 +02:00
|
|
|
req.onBody = function (chunk) {
|
2009-05-14 15:55:28 +02:00
|
|
|
puts("part of the body: " + chunk);
|
2009-05-18 19:33:05 +02:00
|
|
|
};
|
2009-05-14 15:55:28 +02:00
|
|
|
</pre>
|
2009-05-14 17:36:25 +02:00
|
|
|
A chunk of the body is given as the single argument. The transfer-encoding
|
2009-05-14 15:55:28 +02:00
|
|
|
has been removed.
|
|
|
|
|
2009-05-18 19:33:05 +02:00
|
|
|
<p>The body chunk is either a String in the case of UTF-8 encoding or an
|
|
|
|
array of numbers in the case of raw encoding. The body encoding is set with
|
|
|
|
<code class="sh_javascript">req.setBodyEncoding()</code>.
|
|
|
|
|
|
|
|
<dt><code class="sh_javascript">req.onBodyComplete</code></dt>
|
2009-05-14 15:55:28 +02:00
|
|
|
<dd>Callback. Made exactly once for each message. No arguments. After
|
2009-05-17 15:54:06 +02:00
|
|
|
<code class="sh_javascript">onBodyComplete</code> is executed <code class="sh_javascript">onBody</code> will no longer be called.
|
2009-05-14 15:55:28 +02:00
|
|
|
</dd>
|
|
|
|
|
2009-05-18 19:33:05 +02:00
|
|
|
<dt><code class="sh_javascript">req.setBodyEncoding(encoding)</code></dt>
|
2009-05-14 17:36:25 +02:00
|
|
|
<dd>
|
2009-05-17 15:54:06 +02:00
|
|
|
Set the encoding for the request body. Either <code class="sh_javascript">"utf8"</code> or
|
|
|
|
<code class="sh_javascript">"raw"</code>. Defaults to raw.
|
2009-05-18 19:33:05 +02:00
|
|
|
</dl>
|
2009-05-14 17:36:25 +02:00
|
|
|
|
2009-05-18 19:33:05 +02:00
|
|
|
<h4 id="http_server_response"><code class="sh_javascript">node.http.ServerResponse</code></h4>
|
|
|
|
|
|
|
|
<dl>
|
2009-05-20 16:05:31 +02:00
|
|
|
<dt><code class="sh_javascript">res.sendHeader(statusCode, headers)</code></dt>
|
2009-05-14 15:55:28 +02:00
|
|
|
<dd>
|
|
|
|
Sends a response header to the request. The status code is a 3-digit
|
2009-05-17 15:54:06 +02:00
|
|
|
HTTP status code, like <code class="sh_javascript">404</code>. The second argument,
|
|
|
|
<code class="sh_javascript">headers</code>, should be an array of 2-element arrays,
|
2009-05-14 15:55:28 +02:00
|
|
|
representing the response headers.
|
|
|
|
|
|
|
|
<p>Example:
|
2009-05-17 15:54:06 +02:00
|
|
|
<pre class="sh_javascript">
|
2009-05-14 15:55:28 +02:00
|
|
|
var body = "hello world";
|
2009-05-18 19:33:05 +02:00
|
|
|
res.sendHeader(200, [ ["Content-Length", body.length]
|
|
|
|
, ["Content-Type", "text/plain"]
|
|
|
|
]);
|
2009-05-14 15:55:28 +02:00
|
|
|
</pre>
|
|
|
|
This method must only be called once on a message and it must be called
|
2009-05-18 19:33:05 +02:00
|
|
|
before <code class="sh_javascript">res.finish()</code> is called.
|
2009-05-14 15:55:28 +02:00
|
|
|
</dd>
|
2009-05-13 17:46:00 +02:00
|
|
|
|
2009-05-18 19:33:05 +02:00
|
|
|
<dt><code class="sh_javascript">res.sendBody(chunk)</code></dt>
|
2009-05-14 15:55:28 +02:00
|
|
|
<dd>
|
2009-05-17 15:54:06 +02:00
|
|
|
This method must be called after <code class="sh_javascript">sendHeader</code> was called. It
|
2009-05-14 15:55:28 +02:00
|
|
|
sends a chunk of the response body. This method may be called multiple
|
|
|
|
times to provide successive parts of the body.
|
|
|
|
</dd>
|
2009-05-13 17:46:00 +02:00
|
|
|
|
2009-05-18 19:33:05 +02:00
|
|
|
<dt><code class="sh_javascript">res.finish()</code></dt>
|
2009-05-14 15:55:28 +02:00
|
|
|
<dd>
|
|
|
|
This method signals that all of the response headers and body has been
|
|
|
|
sent; that server should consider this message complete.
|
2009-05-18 19:33:05 +02:00
|
|
|
The method, <code class="sh_javascript">res.finish()</code>, MUST be called on each response.
|
2009-05-13 17:46:00 +02:00
|
|
|
|
2009-05-14 15:55:28 +02:00
|
|
|
</dl>
|
2009-05-13 17:46:00 +02:00
|
|
|
|
2009-05-20 13:42:26 +02:00
|
|
|
<h4 id="http_client"><code class="sh_javascript">node.http.Client</code></h4>
|
|
|
|
|
|
|
|
<p> An HTTP client is constructed with a server address as its argument, then
|
|
|
|
the user issues one or more requests. Depending on the server connected to,
|
|
|
|
the client might pipeline the requests or reestablish the connection after each
|
|
|
|
connection. (CURRENTLY: The client does not pipeline.)
|
|
|
|
|
|
|
|
<p> Example of connecting to <code>google.com</code>
|
|
|
|
<pre class="sh_javascript">
|
|
|
|
var google = new node.http.Client(80, "google.com");
|
|
|
|
var req = google.get("/");
|
|
|
|
req.finish(function (res) {
|
2009-05-20 16:05:31 +02:00
|
|
|
puts("STATUS: " + res.statusCode);
|
2009-05-20 13:42:26 +02:00
|
|
|
puts("HEADERS: " + JSON.stringify(res.headers));
|
|
|
|
res.setBodyEncoding("utf8");
|
|
|
|
res.onBody = function (chunk) {
|
|
|
|
puts("BODY: " + chunk);
|
|
|
|
};
|
|
|
|
});
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
<dl>
|
|
|
|
<dt><code class="sh_javascript">new node.http.Client(port, host);</code></dt>
|
|
|
|
<dd> Constructs a new HTTP client. <code>port</code> and <code>host</code>
|
|
|
|
refer to the server to be connected to. A connection is not established until a
|
|
|
|
request is issued.
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt><code class="sh_javascript">client.get(path, request_headers);</code></dt>
|
|
|
|
<dt><code class="sh_javascript">client.head(path, request_headers);</code></dt>
|
|
|
|
<dt><code class="sh_javascript">client.post(path, request_headers);</code></dt>
|
|
|
|
<dt><code class="sh_javascript">client.del(path, request_headers);</code></dt>
|
|
|
|
<dt><code class="sh_javascript">client.put(path, request_headers);</code></dt>
|
|
|
|
<dd> Issues a request.
|
|
|
|
<code>request_headers</code> is optional.
|
|
|
|
<code>request_headers</code> should be an array of 2-element arrays.
|
|
|
|
Additional request headers might be added internally by Node.
|
|
|
|
Returns a <code>ClientRequest</code> object.
|
|
|
|
|
|
|
|
<p>Important: the request is not complete. This method only sends the
|
|
|
|
header of the request. One needs to call <code>req.finish()</code> to finalize
|
|
|
|
the request and retrieve the response. (This sounds convoluted but it provides
|
|
|
|
a chance for the user to stream a body to the server with
|
|
|
|
<code>req.sendBody</code>. <code>GET</code> and <code>HEAD</code> requests
|
|
|
|
normally are without bodies but HTTP does not forbid it, so neither do we.)
|
|
|
|
|
|
|
|
</dl>
|
|
|
|
|
2009-05-20 16:02:53 +02:00
|
|
|
<h4 id="http_client_request"><code class="sh_javascript">node.http.ClientRequest</code></h4>
|
|
|
|
|
|
|
|
<p>This object created internally and returned from the request methods of a
|
|
|
|
<code>node.http.Client</code>. It represents an <i>in-progress</i> request
|
|
|
|
whose header has already been sent.
|
|
|
|
|
|
|
|
<dl>
|
|
|
|
<dt><code class="sh_javascript">req.sendBody(chunk, encoding)</code></dt>
|
|
|
|
<dd> Sends a sucessive peice of the body. By calling this method many times,
|
|
|
|
the user can stream a request body to a server—in that case it is
|
|
|
|
suggested to use the <code class="sh_javascript">["Transfer-Encoding",
|
|
|
|
"chunked"]</code> header line when creating the request.
|
|
|
|
|
|
|
|
<p>The <code>chunk</code> argument should be an array of integers or a string.
|
|
|
|
|
|
|
|
<p>The <code>encoding</code> argument is optional and only applies when
|
|
|
|
<code>chunk</code> is a string. The encoding argument should be either
|
|
|
|
<code>"utf8"</code> or <code>"ascii"</code>. By default the body uses ASCII
|
|
|
|
encoding, as it is faster.
|
|
|
|
|
|
|
|
<p> TODO
|
|
|
|
|
|
|
|
<dt><code class="sh_javascript">req.finish(response_handler)</code></dt>
|
|
|
|
|
|
|
|
<dd> Finishes sending the request. If any parts of the body are
|
|
|
|
unsent, it will flush them to the socket. If the request is chunked, this
|
|
|
|
will send the terminating <code class="sh_javascript">"0\r\n\r\n"</code>.
|
|
|
|
|
|
|
|
<p>The parameter <code>response_handler</code> is a user-supplied callback which will
|
|
|
|
be executed exactly once when the server response headers have been received.
|
|
|
|
The <code>response_handler</code> callback is executed with one argument: a
|
|
|
|
<code>ClientResponse</code> object.
|
|
|
|
</dl>
|
|
|
|
|
|
|
|
<h4 id="http_client_response"><code class="sh_javascript">node.http.ClientResponse</code></h4>
|
|
|
|
|
|
|
|
<p>This object is created internally and passed to the
|
|
|
|
<code>response_handler</code> callback (is given to the client in
|
|
|
|
<code>req.finish</code> function). The response object appears exactly as the
|
|
|
|
header is completely received but before any part of the response body has been
|
|
|
|
read.
|
|
|
|
|
|
|
|
<dl>
|
2009-05-20 16:05:31 +02:00
|
|
|
<dt><code class="sh_javascript">res.statusCode</code></dt>
|
2009-05-20 16:02:53 +02:00
|
|
|
<dd>The 3-digit HTTP response status code. (E.G. <code class="sh_javascript">404</code>.)</dd>
|
|
|
|
|
2009-05-20 16:05:31 +02:00
|
|
|
<dt><code class="sh_javascript">res.httpVersion</code></dt>
|
2009-05-20 16:02:53 +02:00
|
|
|
<dd>The HTTP version of the connected-to server. Probably either
|
|
|
|
<code class="sh_javascript">"1.1"</code> or
|
|
|
|
<code class="sh_javascript">"1.0"</code>.
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt><code class="sh_javascript">res.headers</code></dt>
|
|
|
|
<dd>The response headers. An Array of 2-element arrays.</dd>
|
|
|
|
|
|
|
|
<dt><code class="sh_javascript">res.onBody</code></dt>
|
|
|
|
<dd>Callback. Should be set by the user to be informed of when a piece
|
|
|
|
of the message body is received.
|
|
|
|
A chunk of the body is given as the single argument. The transfer-encoding
|
|
|
|
has been removed.
|
|
|
|
|
|
|
|
<p>The body chunk is either a <code>String</code> in the case of UTF-8
|
|
|
|
encoding or an array of numbers in the case of raw encoding. The body
|
|
|
|
encoding is set with <code class="sh_javascript">res.setBodyEncoding()</code>.
|
|
|
|
|
|
|
|
<dt><code class="sh_javascript">res.onBodyComplete</code></dt>
|
|
|
|
<dd>Callback. Made exactly once for each message. No arguments. After
|
|
|
|
<code class="sh_javascript">onBodyComplete</code> is executed
|
|
|
|
<code class="sh_javascript">onBody</code> will no longer be called.
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt><code class="sh_javascript">res.setBodyEncoding(encoding)</code></dt>
|
|
|
|
<dd>
|
|
|
|
Set the encoding for the response body. Either <code class="sh_javascript">"utf8"</code> or
|
|
|
|
<code class="sh_javascript">"raw"</code>. Defaults to raw.
|
|
|
|
</dd>
|
|
|
|
</dl>
|
|
|
|
|
2009-05-14 15:55:28 +02:00
|
|
|
<h3 id="modules">Modules</h3>
|
2009-05-13 17:46:00 +02:00
|
|
|
|
2009-05-16 13:53:18 +02:00
|
|
|
<p>Node has a simple module loading system. In Node, files and modules are
|
|
|
|
in one-to-one correspondence.
|
|
|
|
|
|
|
|
<p> As an example,
|
2009-05-17 15:54:06 +02:00
|
|
|
<code class="sh_javascript">foo.js</code> loads the module <code class="sh_javascript">mjsunit.js</code>.
|
2009-05-16 13:53:18 +02:00
|
|
|
|
2009-05-17 15:54:06 +02:00
|
|
|
<p>The contents of <code class="sh_javascript">foo.js</code>:
|
2009-05-16 13:53:18 +02:00
|
|
|
|
2009-05-17 15:54:06 +02:00
|
|
|
<pre class="sh_javascript">
|
2009-05-14 17:36:25 +02:00
|
|
|
include("mjsunit");
|
|
|
|
function onLoad () {
|
|
|
|
assertEquals(1, 2);
|
|
|
|
}
|
|
|
|
</pre>
|
2009-05-17 15:54:06 +02:00
|
|
|
<p>The contents of <code class="sh_javascript">mjsunit.js</code>:
|
2009-05-14 17:36:25 +02:00
|
|
|
|
2009-05-17 15:54:06 +02:00
|
|
|
<pre class="sh_javascript">
|
2009-05-14 17:36:25 +02:00
|
|
|
function fail (expected, found, name_opt) {
|
|
|
|
// ...
|
|
|
|
}
|
|
|
|
function deepEquals (a, b) {
|
|
|
|
// ...
|
|
|
|
}
|
2009-05-14 20:34:14 +02:00
|
|
|
<span class="highlight">exports</span>.assertEquals = function (expected, found, name_opt) {
|
2009-05-14 17:36:25 +02:00
|
|
|
if (!deepEquals(found, expected)) {
|
|
|
|
fail(expected, found, name_opt);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</pre>
|
2009-05-16 13:53:18 +02:00
|
|
|
|
2009-05-17 15:54:06 +02:00
|
|
|
<p>Here the module <code class="sh_javascript">mjsunit.js</code> has exported the function
|
|
|
|
<code class="sh_javascript">assertEquals()</code>. <code class="sh_javascript">mjsunit.js</code> must be in the
|
|
|
|
same directory as <code class="sh_javascript">foo.js</code> for <code class="sh_javascript">include()</code> to find it.
|
|
|
|
The module path is relative to the file calling <code class="sh_javascript">include()</code>.
|
|
|
|
The module path does not include filename extensions like <code class="sh_javascript">.js</code>.
|
2009-05-16 13:53:18 +02:00
|
|
|
|
2009-05-17 15:54:06 +02:00
|
|
|
<p> <code class="sh_javascript">include()</code> inserts the exported objects
|
2009-05-16 13:53:18 +02:00
|
|
|
from the specified module into the global namespace.
|
|
|
|
|
|
|
|
<p> Because file loading does not happen instantaneously, and because Node
|
2009-05-18 23:21:11 +02:00
|
|
|
has a policy of never blocking, the callback <code
|
|
|
|
class="sh_javascript">onLoad</code> can be set and will notify the user
|
|
|
|
when all the included modules are loaded. Each file/module can have an <code
|
|
|
|
class="sh_javascript">onLoad</code> callback.
|
2009-05-16 13:53:18 +02:00
|
|
|
|
|
|
|
<p> To export an object, add to the special <code
|
|
|
|
class="highlight">exports</code> object.
|
|
|
|
|
2009-05-17 15:54:06 +02:00
|
|
|
<p> The functions <code class="sh_javascript">fail</code> and <code class="sh_javascript">deepEquals</code> are not
|
2009-05-14 17:36:25 +02:00
|
|
|
exported and remain private to the module.
|
|
|
|
|
2009-05-18 23:21:11 +02:00
|
|
|
<p> <code>require()</code> is like <code>include()</code> except does not
|
|
|
|
polute the global namespace. It returns a namespace object. The exported objects
|
2009-05-17 15:54:06 +02:00
|
|
|
can only be guaranteed to exist after the <code class="sh_javascript">onLoad()</code> callback is
|
2009-05-16 13:53:18 +02:00
|
|
|
made. For example:
|
2009-05-17 15:54:06 +02:00
|
|
|
<pre class="sh_javascript">
|
2009-05-14 17:36:25 +02:00
|
|
|
var mjsunit = require("mjsunit");
|
|
|
|
function onLoad () {
|
|
|
|
mjsunit.assertEquals(1, 2);
|
|
|
|
}
|
|
|
|
</pre>
|
|
|
|
|
2009-05-17 15:54:06 +02:00
|
|
|
<p> <code class="sh_javascript">include()</code> and <code class="sh_javascript">require()</code> cannot be used after
|
|
|
|
<code class="sh_javascript">onLoad()</code> is called. So put them at the beginning of your file.
|
2009-05-14 17:36:25 +02:00
|
|
|
|
2009-05-14 15:55:28 +02:00
|
|
|
</body>
|
2009-05-13 17:46:00 +02:00
|
|
|
</html>
|