Open manglass opened 1 year ago
The underlying Rust library can initiate connections, but my Elixir bindings only focus on the server part and client initiated streams.
Apart from the Rust-based WTransport library, I don't know any other way to have a WebTransport client outside of a browser, sorry.
I have been successfully using https://webtransport.day/ as a client to test
wtransport-elixir
as a server. I am well versed in JavaScript and don't see a huge leap to implementing a custom browser based client (https://developer.mozilla.org/en-US/docs/Web/API/WebTransport).wtransport-elixir
initiate connections and useConnection.send_datagram
/Stream.send
to act as an elixir based client?