Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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
```