├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── browser.js ├── index.js ├── package.json ├── src ├── RTCDataChannel.js ├── RTCIceCandidate.js ├── RTCPeerConnection.js └── RTCSessionDescription.js └── test └── simple-peer.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .nyc_output 3 | coverage 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | coverage 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappum/electron-webrtc/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappum/electron-webrtc/HEAD/README.md -------------------------------------------------------------------------------- /browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappum/electron-webrtc/HEAD/browser.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappum/electron-webrtc/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappum/electron-webrtc/HEAD/package.json -------------------------------------------------------------------------------- /src/RTCDataChannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappum/electron-webrtc/HEAD/src/RTCDataChannel.js -------------------------------------------------------------------------------- /src/RTCIceCandidate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappum/electron-webrtc/HEAD/src/RTCIceCandidate.js -------------------------------------------------------------------------------- /src/RTCPeerConnection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappum/electron-webrtc/HEAD/src/RTCPeerConnection.js -------------------------------------------------------------------------------- /src/RTCSessionDescription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappum/electron-webrtc/HEAD/src/RTCSessionDescription.js -------------------------------------------------------------------------------- /test/simple-peer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappum/electron-webrtc/HEAD/test/simple-peer.js --------------------------------------------------------------------------------