-
Notifications
You must be signed in to change notification settings - Fork 337
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support http2 #1145
Comments
Node's built-in http2 has graduated from experimental. nodejs/node#22466 |
Good to know!
I don't think we should switch our whole web app to fastly or koa just for this. I hope Express will get HTTP/2 support soon. Server Sent Events are an interesting alternative to WebSockets which I know some W3C members have been using. Unfortunately they are not supported in IE or Edge yet, but you can vote for them here! |
It looks like express should support HTTP/2 just fine: expressjs/express#2364 We'll have to wait until we make the switch to Node v10 (when it becomes LTS) to start using it, though, as it is still experimental in 8.X. |
It is about
I vote it! Furthermore, SSE with IE or Edge has polyfill, if they not support. |
@sogaani Ah! The comments in the other issue made it sound like it was just supported. That's confusing. |
It would be interesting to do a prototype/architectural spike with one of those packages to see if Martin's proposed local HTTPS solution works (#171 (comment)). If it does then this is something we could prioritise, maybe even contribute to getting HTTP/2 supported in Express sooner. |
@sogaani is already trying to get HTTP/2 support for us 😄 |
PageKite should support HTTP2 with no major modifications. (I had a moment of doubt before I looked into it) |
Unfortunately, node's built-in support for http2 is still experimental so this likely should not be done until there's a stabler way to do it.
The text was updated successfully, but these errors were encountered: