You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WebTransport is an exciting new way to easily add low-latency UDP sockets for your application. To quote WebKit:
Providing unidirectional and bidirectional streams, as well as potentially-unreliable datagrams, with no head of line blocking and minimal latency overhead is an important and useful addition to the web.
Details
WebTransport is now supported by 76%+ of global devices and WebKit proclaimed their support of WebTransport so we might get Safari support this summer, which would make it supported across all major browsers 🥳 The HTTP/3 stack has also been maturing significantly so it's getting easier and easier to use WebTransport as part of a backend setup.
RN natively supports WebSocket and WebTransport feels very similar. WebTransport is much more lightweight than WebRTC and focused on the client-server use case, which is likely useful for many RN apps.
Discussion points / questions
Should RN support WebTransport natively or should it be handled by a community library?
What's needed for RN to support WebTransport?
The text was updated successfully, but these errors were encountered:
Introduction
WebTransport is an exciting new way to easily add low-latency UDP sockets for your application. To quote WebKit:
Details
WebTransport is now supported by 76%+ of global devices and WebKit proclaimed their support of WebTransport so we might get Safari support this summer, which would make it supported across all major browsers 🥳 The HTTP/3 stack has also been maturing significantly so it's getting easier and easier to use WebTransport as part of a backend setup.
RN natively supports WebSocket and WebTransport feels very similar. WebTransport is much more lightweight than WebRTC and focused on the client-server use case, which is likely useful for many RN apps.
Discussion points / questions
The text was updated successfully, but these errors were encountered: