node-http2 icon indicating copy to clipboard operation
node-http2 copied to clipboard

An HTTP/2 client and server implementation for node.js

Results 76 node-http2 issues
Sort by recently updated
recently updated
newest added

The Twitter API uses HTTP/2, but trying to access it with node-http2 results in binary output rather than the expected textual output. Steps to reproduce: ``` $ node node_modules/http2/example/client.js https://api.twitter.com/robots.txt...

In Deserializer.SETTINGS, ``` if (buffer.length % 6 !== 0) { return 'PROTOCOL_ERROR'; } ``` BUT rfc7540 says "A SETTINGS frame with a length other than a multiple of 6 octets...

When frame.data is input, I can see this source code. `frame.data = buffer.slice(dataOffset, -1 * paddingLength); ` why are padding leave out? plus) The other frames have same part, too.

Tests fail when node version >= 6.3.0. (It works well in 6.2.2) Logs about failed tests: ``` 4 failing 1) http.js test scenario request and response with trailers should work...

Hi, I'm taking a look at support for upgrading a connection on a non encrypted connection. A few tests are failing under node 6.9.4 but seem to work fine on...

Does the Public API support manually sending any type of HTTP/2 frame once the connection is set up? I can't seem to find a way to do this.

https://github.com/molnarg/node-http2/wiki/Public-API lib/protocol/endpoint.js link for example is broken 404 not found probably others too, haven't yet checked

when I send the request to apple I will get the events.js:165 throw err; ^ Error: Uncaught, unspecified "error" event. (FRAME_SIZE_ERROR) at Endpoint.emit (events.js:163:17) at runCallback (timers.js:570:20) at tryOnImmediate (timers.js:550:5)...

I am trying to deploy a node app on heroku using express and http2 but I am not sure how to configure the server

Hi, sorry for opening another issue on this but the past one is locked and hasnt been updated for a year. was there ever a resolution found for Express and...