An open API service indexing awesome lists of open source software.

https://github.com/sourcepirate/windrtc

RTC server using webrtc
https://github.com/sourcepirate/windrtc

Last synced: 23 days ago
JSON representation

RTC server using webrtc

Awesome Lists containing this project

README

          

WindRTC PeerConnection Library

```javascript
//client side
var connection=new PeerCallConnection({host:hostname,port:portnumber});
connection.startVideoCall();
connection.call();
```
Server Side Abstaraction

```javascript
var server =new WebRTCServer(portnumber);
```

For Text Chat

```javascript
var connection=new TextSharing({host:hostname,port:portnumber});
connection.openChannel();
```

For File Sharing

```javascript
var connection=new FileShare({host:hostname,port:portnumber});
connection.Send();
```