Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nobonobo/rtcdc-p2p
p2p data connection on webrtc
https://github.com/nobonobo/rtcdc-p2p
Last synced: 22 days ago
JSON representation
p2p data connection on webrtc
- Host: GitHub
- URL: https://github.com/nobonobo/rtcdc-p2p
- Owner: nobonobo
- License: bsd-2-clause
- Created: 2016-04-10T13:32:43.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-04-13T11:04:44.000Z (over 8 years ago)
- Last Synced: 2023-03-23T11:32:20.944Z (almost 2 years ago)
- Language: Go
- Size: 11.7 KB
- Stars: 9
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rtcdc-p2p
p2p data connection on webrtc## depends
- libX11(-dev)
- pkg-config```sh
go get github.com/keroserene/go-webrtc
```## signaling server for appengine-go
```sh
go get -d github.com/nobonobo/rtcdc-p2p/signaling
cd $GOPATH/src/github.com/nobonobo/rtcdc-p2p/signaling/server
make update APPID=whatever
```https://signaling-2016.appspot.com/
## server build and run
```sh
go get -u github.com/nobonobo/rtcdc-p2p/server
server -room sample-room
```## client build and run
```sh
go get -u github.com/nobonobo/rtcdc-p2p/client
client -room sample-room -id client1
```