Is it possible to create peer-to-peer connections in a web browser?

后端 未结 2 1801
忘掉有多难
忘掉有多难 2020-12-21 04:49

I am aware that an early draft of HTML5 specified peer-to-peer connections using the PeerToPeerConnection() constructor. However, this was replaced by WebSocket which, to my

相关标签:
2条回答
  • 2020-12-21 05:14

    It's not exactly P2P, but you can use proxy server using push mechanism

    http://en.wikipedia.org/wiki/Push_technology

    For example if you want to send data from Browser A to Browser B, you send that data to proxy server and that server push it to Browser B.

    0 讨论(0)
  • 2020-12-21 05:23

    Opera Unite allows Peer to peer (basically gives your browser web server, file system and nat-traversal capabilities), but this is Opera only.

    0 讨论(0)
提交回复
热议问题