├── .gitignore ├── README.md └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | .#* 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # serverless-webrtc 2 | 3 | Smallest WebRTC with no signaling server 4 | 5 | [See blog post](https://jameshfisher.com/2017/01/16/tiny-serverless-webrtc/) 6 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |