spdy-http2 / node-spdy

SPDY server on Node.js
2.81k stars 196 forks source link

Rename the package and clean it out? #273

Closed bonesoul closed 7 years ago

bonesoul commented 7 years ago

So as spdy protocol is officially dead now how about cleaning this module to only support http2?

indutny commented 7 years ago

There are still some services that need SPDY, so it is unlikely that it is going away very soon from this repo.

Regarding the name, what name do you propose?

bonesoul commented 7 years ago

node-http2 ?

is there a way to disable SPDY support right now while running the package?

indutny commented 7 years ago

Yep, there is protocols option: https://github.com/indutny/node-spdy#usage

bonesoul commented 7 years ago

okay for future reference the folowing was what i needed;

  protocols: [ 'h2', 'http/1.1' ], // enable http2 and http/1.1 for fallback.