Michele di Biase
Michele di Biase

Reputation: 21

Make complex apps using p2p connections

in the last days I seen a technology called WebRTC that permit directly in Javascript to make p2p connections. What I've said to myself is: can i make complex web apps, like forums or social networks, that actually need databases to work fine, with WebRTC and p2p connection? Can someone tell me if is it possible and how it can be do this.

Upvotes: 0

Views: 68

Answers (1)

Rubycon
Rubycon

Reputation: 18346

Sure, you can do it, any project complexity can be implemented using WebRTC API

WebRTC is a kind of standard now for audio/video p2p communication at this moment, so almost any projects that have audio/video calls use WebRTC API - at browser side, and also at iOS/Android

Here is an open source example of 1-1 and group video chat app, which uses WebRTC API broadly

Upvotes: 1

Related Questions