For experimental purposes, I want to try, but HTTP-over-QUIC seems to be unavailable in Node.js. The QUIC itself is available.
Asked
Active
Viewed 5,729 times
7
-
2since QUIC and HTTP/3 is quite new, the NodeJS implementation is currently on progress. take a look to [this issue](https://github.com/nodejs/node/issues/38478). – nouvist Dec 16 '21 at 04:11
-
2Express would support HTTP/3 if NodeJS have this feature. take a look to [this issue](https://github.com/expressjs/express/issues/4693). – nouvist Dec 16 '21 at 04:19
-
1It's important to note that express actually doesn't support http/2 even though Node supports it. According to [this issue](https://github.com/expressjs/express/issues/5061) (which then references [this issue](https://github.com/nodejs/node/issues/29829)), they've held off on it due to incompatibility between the Node APIs of http/2 and http/1.x. As long as http/3 support is implemented with compatibility with http/1.x, I bet it could be compatible out of the box. – cwadrupldijjit Jan 25 '23 at 23:09