-
-
Notifications
You must be signed in to change notification settings - Fork 33
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
Exp: HTTP/2 #2099
Exp: HTTP/2 #2099
Conversation
This should ease declaration and enable future improvements like #2099 Making `createServer()` to return an object having `servers` property instead of `httpServer` and `httpsServer`
Crashes with
Something is messed up with a prototype chain.
|
UPD: found a way to use spdy-fixes conditionally, using same pair of servers |
@@ -2277,6 +2309,11 @@ is-stream@^2.0.0: | |||
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" | |||
integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== | |||
|
|||
isarray@~1.0.0: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ancient sheet
html-escaper@^2.0.0: | ||
version "2.0.2" | ||
resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" | ||
integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== | ||
|
||
http-deceiver-fixes@^1.2.8: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this thing is using low level API of process.bindings
that was removed in Node 14.
I'm surprised that it still works anyhow.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I checked it on Node 20 and despite the Node.js documentation the method is still present ¯\_(ツ)_/¯
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
anyway, that low-level approach won't work anywhere else like Deno/Bun.
we'll have to way another year for express team to make version 6 that will support http2 natively
Experiments regarding #2092
allowH2