Ask HN: What's the best way to handle large file P2P transfer in the browser?
3 points
2 hours ago
| 1 comment
| HN
IVski
1 hour 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.
reply