├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── docs ├── css │ └── main.css ├── dataChannel.html ├── http.html ├── img │ ├── fork-me.png │ └── webrtc.svg ├── index.html ├── js │ ├── adapter.js │ ├── axios.js │ ├── dataChannel.js │ ├── http.js │ ├── index.js │ └── socket.js └── socket.html ├── package.json ├── server ├── http.js ├── index.js ├── ipaddrs.js └── socket.js ├── webRTC-mdn.png ├── webrtc.drawio └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashaofu/webrtc-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashaofu/webrtc-demo/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashaofu/webrtc-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashaofu/webrtc-demo/HEAD/README.md -------------------------------------------------------------------------------- /docs/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashaofu/webrtc-demo/HEAD/docs/css/main.css -------------------------------------------------------------------------------- /docs/dataChannel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashaofu/webrtc-demo/HEAD/docs/dataChannel.html -------------------------------------------------------------------------------- /docs/http.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashaofu/webrtc-demo/HEAD/docs/http.html -------------------------------------------------------------------------------- /docs/img/fork-me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashaofu/webrtc-demo/HEAD/docs/img/fork-me.png -------------------------------------------------------------------------------- /docs/img/webrtc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashaofu/webrtc-demo/HEAD/docs/img/webrtc.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashaofu/webrtc-demo/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashaofu/webrtc-demo/HEAD/docs/js/adapter.js -------------------------------------------------------------------------------- /docs/js/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashaofu/webrtc-demo/HEAD/docs/js/axios.js -------------------------------------------------------------------------------- /docs/js/dataChannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashaofu/webrtc-demo/HEAD/docs/js/dataChannel.js -------------------------------------------------------------------------------- /docs/js/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashaofu/webrtc-demo/HEAD/docs/js/http.js -------------------------------------------------------------------------------- /docs/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashaofu/webrtc-demo/HEAD/docs/js/index.js -------------------------------------------------------------------------------- /docs/js/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashaofu/webrtc-demo/HEAD/docs/js/socket.js -------------------------------------------------------------------------------- /docs/socket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashaofu/webrtc-demo/HEAD/docs/socket.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashaofu/webrtc-demo/HEAD/package.json -------------------------------------------------------------------------------- /server/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashaofu/webrtc-demo/HEAD/server/http.js -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashaofu/webrtc-demo/HEAD/server/index.js -------------------------------------------------------------------------------- /server/ipaddrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashaofu/webrtc-demo/HEAD/server/ipaddrs.js -------------------------------------------------------------------------------- /server/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashaofu/webrtc-demo/HEAD/server/socket.js -------------------------------------------------------------------------------- /webRTC-mdn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashaofu/webrtc-demo/HEAD/webRTC-mdn.png -------------------------------------------------------------------------------- /webrtc.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashaofu/webrtc-demo/HEAD/webrtc.drawio -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashaofu/webrtc-demo/HEAD/yarn.lock --------------------------------------------------------------------------------