node-http2
node-http2 copied to clipboard
An HTTP/2 client and server implementation for node.js
Resolves https://github.com/node-apn/node-apn/issues/471
This is the error message assert.js:81 throw new assert.AssertionError({ ^ AssertionError: false == true at Connection._send (/Users/lvs/code/ls/node_modules/http2/lib/protocol/connection.js:326:9) at runCallback (timers.js:672:20) at tryOnImmediate (timers.js:645:5) at processImmediate [as _immediateCallback] (timers.js:617:5)
Hi, how I can fix it? ``` (node) warning: possible EventEmitter memory leak detected. 11 close listeners added. Use emitter.setMaxListeners() to increase limit. Trace at TLSSocket.addListener (events.js:239:17) at TLSSocket.Readable.on (_stream_readable.js:665:33)...
I found it cannot generate doc because of lacking template. Why not commit the doc folder?
Want to be able to inspect frames as the come and go. Added an onEndpoint parameter to Agent.request() and EndPoint(). Needed onEndpoint because after constructor for EndPoint has returned some...
Spec says there can be only one connection per host/port, but there is a case with Apple Push Notifications Service where one host/port can be used with multiple certificates. This...
Fix https://github.com/molnarg/node-http2/issues/182
Needed to be able to handles thoose errors gracefully because endpoint is not exposed.
Steps to reproduce: Run this program: ``` var http2 = require('http2'); http2.get('https://api.twitter.com/robots.txt'); ``` Expected result: Program exits quickly. Actual result: Program waits for a long time. Probably this is because...