├── .gitignore ├── .jshintignore ├── .jshintrc ├── README.md ├── config └── default.json ├── package.json └── src ├── browser ├── app │ ├── example.json │ └── index.js └── styles │ └── index.scss ├── index.js ├── public ├── a.html ├── a.json ├── css │ └── style.css └── js │ └── app.js └── views └── index.jade /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddias/webrtc-explorer-simulator/HEAD/.jshintrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddias/webrtc-explorer-simulator/HEAD/README.md -------------------------------------------------------------------------------- /config/default.json: -------------------------------------------------------------------------------- 1 | { 2 | "port": 9500 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddias/webrtc-explorer-simulator/HEAD/package.json -------------------------------------------------------------------------------- /src/browser/app/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddias/webrtc-explorer-simulator/HEAD/src/browser/app/example.json -------------------------------------------------------------------------------- /src/browser/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddias/webrtc-explorer-simulator/HEAD/src/browser/app/index.js -------------------------------------------------------------------------------- /src/browser/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddias/webrtc-explorer-simulator/HEAD/src/browser/styles/index.scss -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddias/webrtc-explorer-simulator/HEAD/src/index.js -------------------------------------------------------------------------------- /src/public/a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddias/webrtc-explorer-simulator/HEAD/src/public/a.html -------------------------------------------------------------------------------- /src/public/a.json: -------------------------------------------------------------------------------- 1 | aaaa 2 | -------------------------------------------------------------------------------- /src/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddias/webrtc-explorer-simulator/HEAD/src/public/css/style.css -------------------------------------------------------------------------------- /src/public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddias/webrtc-explorer-simulator/HEAD/src/public/js/app.js -------------------------------------------------------------------------------- /src/views/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddias/webrtc-explorer-simulator/HEAD/src/views/index.jade --------------------------------------------------------------------------------