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
- Host: GitHub
- URL: https://github.com/sourcepirate/windrtc
- Owner: sourcepirate
- Created: 2014-12-11T02:18:58.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-12-12T13:10:47.000Z (over 11 years ago)
- Last Synced: 2024-04-14T07:20:19.788Z (about 2 years ago)
- Language: JavaScript
- Size: 898 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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();
```