How do I run http/3 with Express?
Asked Answered
V

0

9

For experimental purposes, I want to try, but HTTP-over-QUIC seems to be unavailable in Node.js. The QUIC itself is available.

Vicinity answered 2/8, 2021 at 17:28 Comment(4)
since QUIC and HTTP/3 is quite new, the NodeJS implementation is currently on progress. take a look to this issue.Conquistador
Express would support HTTP/3 if NodeJS have this feature. take a look to this issue.Conquistador
It's important to note that express actually doesn't support http/2 even though Node supports it. According to this issue (which then references this issue), 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.Consuetudinary
At the moment express doesn't support http/2, so good luck with http/3Invigorate

© 2022 - 2024 — McMap. All rights reserved.