Kevin Jahns

Results 152 comments of Kevin Jahns

I'm not a big fan of constructor magic. I wouldn't be able to guarantee that your custom signaling conn is properly managed. I believe in this case the right approach...

Hi, I haven't ignored this PR. I'm currently working on a refactor of y-websocket to use differential-updates https://github.com/yjs/yjs/issues/263 . I want to enable the server to sync with the client...

Sure thing. I'll create a PR that you can review and see if the approach will still work for you. I want to stay compatible as much as possible. But...

Oh I think this has been fixed in the last PR. Can you please test the latest version?

You are right, the `data` object should be converted to a buffer first to determine the length of the content. The RFC specifies that the `content-length` is specified as the...

Hi @disarticulate , this is indeed a problem. Data channels in WebRTC really feel like an afterthought in many places. One solution would be to write a wrapper around the...

> i'm not sure how to interpret 'bundle size', but I'd guess a lot of that duplicates what you've done with lib0. Yjs uses lib0/encoding anyway. So I'd like to...

In the current state, y-webrtc apparently can't handle large files (depending on the browser being used). Managing this manually would be pretty hard because you need to coordinate where to...

Another nice alternative is to use webtorrent (for large files).

The y-websocket server is a basic, minimal server for syncing documents. I want to create a standardized API to extend y-websocket server to use different PubSub servers. I'm realizing that...