2018-02-12 08:31:55 +01:00
|
|
|
@// NB(chrisdickinson): if you move this file, be sure to update
|
|
|
|
@// tools/doc/html.js to point at the new location.
|
2018-03-04 01:14:06 +01:00
|
|
|
|
|
|
|
<!--introduced_in=v0.10.0-->
|
|
|
|
|
2012-02-27 20:06:14 +01:00
|
|
|
* [About these Docs](documentation.html)
|
2016-04-12 19:25:03 +02:00
|
|
|
* [Usage & Example](synopsis.html)
|
2016-04-12 19:26:21 +02:00
|
|
|
|
|
|
|
<div class="line"></div>
|
|
|
|
|
2012-09-23 00:48:47 +02:00
|
|
|
* [Assertion Testing](assert.html)
|
2017-06-02 00:01:18 +02:00
|
|
|
* [Async Hooks](async_hooks.html)
|
2012-02-27 20:12:35 +01:00
|
|
|
* [Buffer](buffer.html)
|
2017-05-08 11:36:41 +02:00
|
|
|
* [C++ Addons](addons.html)
|
2017-04-20 00:26:24 +02:00
|
|
|
* [C/C++ Addons - N-API](n-api.html)
|
2012-09-23 00:48:47 +02:00
|
|
|
* [Child Processes](child_process.html)
|
|
|
|
* [Cluster](cluster.html)
|
2016-03-18 18:26:41 +01:00
|
|
|
* [Command Line Options](cli.html)
|
2013-06-12 01:49:56 +02:00
|
|
|
* [Console](console.html)
|
2011-03-29 02:36:50 +02:00
|
|
|
* [Crypto](crypto.html)
|
2012-09-23 00:48:47 +02:00
|
|
|
* [Debugger](debugger.html)
|
2016-12-04 21:47:01 +01:00
|
|
|
* [Deprecated APIs](deprecations.html)
|
2011-03-29 02:36:50 +02:00
|
|
|
* [DNS](dns.html)
|
2012-09-23 00:48:47 +02:00
|
|
|
* [Domain](domain.html)
|
2017-09-07 22:53:11 +02:00
|
|
|
* [ECMAScript Modules](esm.html)
|
2015-02-10 21:48:55 +01:00
|
|
|
* [Errors](errors.html)
|
2012-09-23 00:48:47 +02:00
|
|
|
* [Events](events.html)
|
|
|
|
* [File System](fs.html)
|
|
|
|
* [Globals](globals.html)
|
2010-10-28 14:18:16 +02:00
|
|
|
* [HTTP](http.html)
|
http2: introducing HTTP/2
At long last: The initial *experimental* implementation of HTTP/2.
This is an accumulation of the work that has been done in the nodejs/http2
repository, squashed down to a couple of commits. The original commit
history has been preserved in the nodejs/http2 repository.
This PR introduces the nghttp2 C library as a new dependency. This library
provides the majority of the HTTP/2 protocol implementation, with the rest
of the code here providing the mapping of the library into a usable JS API.
Within src, a handful of new node_http2_*.c and node_http2_*.h files are
introduced. These provide the internal mechanisms that interface with nghttp
and define the `process.binding('http2')` interface.
The JS API is defined within `internal/http2/*.js`.
There are two APIs provided: Core and Compat.
The Core API is HTTP/2 specific and is designed to be as minimal and as
efficient as possible.
The Compat API is intended to be as close to the existing HTTP/1 API as
possible, with some exceptions.
Tests, documentation and initial benchmarks are included.
The `http2` module is gated by a new `--expose-http2` command line flag.
When used, `require('http2')` will be exposed to users. Note that there
is an existing `http2` module on npm that would be impacted by the introduction
of this module, which is the main reason for gating this behind a flag.
When using `require('http2')` the first time, a process warning will be
emitted indicating that an experimental feature is being used.
To run the benchmarks, the `h2load` tool (part of the nghttp project) is
required: `./node benchmarks/http2/simple.js benchmarker=h2load`. Only
two benchmarks are currently available.
Additional configuration options to enable verbose debugging are provided:
```
$ ./configure --debug-http2 --debug-nghttp2
$ NODE_DEBUG=http2 ./node
```
The `--debug-http2` configuration option enables verbose debug statements
from the `src/node_http2_*` files. The `--debug-nghttp2` enables the nghttp
library's own verbose debug output. The `NODE_DEBUG=http2` enables JS-level
debug output.
The following illustrates as simple HTTP/2 server and client interaction:
(The HTTP/2 client and server support both plain text and TLS connections)
```jt client = http2.connect('http://localhost:80');
const req = client.request({ ':path': '/some/path' });
req.on('data', (chunk) => { /* do something with the data */ });
req.on('end', () => {
client.destroy();
});
// Plain text (non-TLS server)
const server = http2.createServer();
server.on('stream', (stream, requestHeaders) => {
stream.respond({ ':status': 200 });
stream.write('hello ');
stream.end('world');
});
server.listen(80);
```
```js
const http2 = require('http2');
const client = http2.connect('http://localhost');
```
Author: Anna Henningsen <anna@addaleax.net>
Author: Colin Ihrig <cjihrig@gmail.com>
Author: Daniel Bevenius <daniel.bevenius@gmail.com>
Author: James M Snell <jasnell@gmail.com>
Author: Jun Mukai
Author: Kelvin Jin
Author: Matteo Collina <matteo.collina@gmail.com>
Author: Robert Kowalski <rok@kowalski.gd>
Author: Santiago Gimeno <santiago.gimeno@gmail.com>
Author: Sebastiaan Deckers <sebdeckers83@gmail.com>
Author: Yosuke Furukawa <yosuke.furukawa@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/14239
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
2017-07-17 19:17:16 +02:00
|
|
|
* [HTTP/2](http2.html)
|
2011-01-22 03:16:56 +01:00
|
|
|
* [HTTPS](https.html)
|
2016-12-13 02:08:31 +01:00
|
|
|
* [Inspector](inspector.html)
|
2017-06-26 07:05:49 +02:00
|
|
|
* [Internationalization](intl.html)
|
2012-09-23 00:48:47 +02:00
|
|
|
* [Modules](modules.html)
|
|
|
|
* [Net](net.html)
|
|
|
|
* [OS](os.html)
|
|
|
|
* [Path](path.html)
|
2017-08-08 00:53:24 +02:00
|
|
|
* [Performance Hooks](perf_hooks.html)
|
2012-09-23 00:48:47 +02:00
|
|
|
* [Process](process.html)
|
2012-05-26 06:56:41 +02:00
|
|
|
* [Punycode](punycode.html)
|
2012-09-23 00:48:47 +02:00
|
|
|
* [Query Strings](querystring.html)
|
2010-10-28 14:18:16 +02:00
|
|
|
* [Readline](readline.html)
|
|
|
|
* [REPL](repl.html)
|
2012-09-23 00:48:47 +02:00
|
|
|
* [Stream](stream.html)
|
|
|
|
* [String Decoder](string_decoder.html)
|
|
|
|
* [Timers](timers.html)
|
|
|
|
* [TLS/SSL](tls.html)
|
2018-04-04 03:05:33 +02:00
|
|
|
* [Trace Events](tracing.html)
|
2011-03-29 02:36:50 +02:00
|
|
|
* [TTY](tty.html)
|
2012-09-23 00:48:47 +02:00
|
|
|
* [UDP/Datagram](dgram.html)
|
|
|
|
* [URL](url.html)
|
|
|
|
* [Utilities](util.html)
|
2014-12-09 22:57:48 +01:00
|
|
|
* [V8](v8.html)
|
2012-09-23 00:48:47 +02:00
|
|
|
* [VM](vm.html)
|
2017-09-05 22:38:32 +02:00
|
|
|
* [Worker](worker.html)
|
2011-10-01 02:01:07 +02:00
|
|
|
* [ZLIB](zlib.html)
|
2016-04-12 19:26:21 +02:00
|
|
|
|
|
|
|
<div class="line"></div>
|
|
|
|
|
|
|
|
* [GitHub Repo & Issue Tracker](https://github.com/nodejs/node)
|
2017-11-23 00:04:16 +01:00
|
|
|
* [Mailing List](https://groups.google.com/group/nodejs)
|