Ask HN: What's the best way to handle large file P2P transfer in the browser?

4 points | by feixiangfly 19 hours ago

4 comments

  • austin-cheney 6 minutes ago
    My prior personal project was all about exploring this subject.

    https://github.com/prettydiff/share-file-systems

  • IVski 18 hours ago
    WebRTC DataChannels work well for this. Chunk the file (~64KB chunks), handle backpressure manually, and use a simple signaling server for the handshake. wormhole.app is a good reference implementation.
  • mufid99 19 hours ago
    [flagged]
  • feixiangfly 19 hours ago
    [dead]