https://github.com/lopcode/http3
Experimental HTTP/3 tooling for Java / JVM systems
https://github.com/lopcode/http3
Last synced: 11 months ago
JSON representation
Experimental HTTP/3 tooling for Java / JVM systems
- Host: GitHub
- URL: https://github.com/lopcode/http3
- Owner: lopcode
- License: apache-2.0
- Created: 2025-01-04T12:08:00.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-08T12:57:25.000Z (11 months ago)
- Last Synced: 2025-03-08T13:34:30.152Z (11 months ago)
- Language: Java
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# http3
Experimental HTTP/3 tooling for Java / JVM systems.
Motivation / bets:
* I want to properly understand HTTP/3 and WebTransport (and therefore also QUIC), and implementing from scratch is a
good way to do that
* Both HTTP/3 and WebTransport will offer very interesting new capabilities to websites and apps
* WebTransport appears to require HTTP/3 at every layer (including LB <-> application), so having it readily available
for Java apps is important
Other ideas:
* Thorough automated testing is important, so use or build something like h2spec for verification
* If the project goes well, it could be packaged up as something to build clients on
* Or maybe even the basis for an HTTP/3-only client
* Loom means it can be declarative, and hopefully easier to implement and understand the threading model (eg thread per
stream)
Documentation:
* HTTP/3 RFC: https://datatracker.ietf.org/doc/html/rfc9114
* QUIC RFC: https://datatracker.ietf.org/doc/html/rfc9000
* WebTransport MDN: https://developer.mozilla.org/en-US/docs/Web/API/WebTransport
## Contributing
I'm not currently looking for external code contributions. If you'd like to help:
* Give your feedback in [Discussions](https://github.com/lopcode/http3/discussions)
* Share the repo in your circles / social media
* Star the repo 🌟
Thank you for being enthusiastic about the project!