├── .gitignore ├── .jshintrc ├── LICENSE ├── Procfile ├── README.md ├── config └── config.json ├── index.js ├── lib └── server.js ├── package.json └── public ├── .bowerrc ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── app ├── .buildignore ├── .htaccess ├── 404.html ├── favicon.ico ├── images │ └── yeoman.png ├── index.html ├── robots.txt ├── scripts │ ├── adapter.js │ ├── app.js │ ├── controllers │ │ └── room.js │ ├── directives │ │ └── videoplayer.js │ └── services │ │ ├── io.js │ │ ├── room.js │ │ └── videostream.js ├── styles │ └── main.css └── views │ └── room.html ├── bower.json ├── dist ├── .htaccess ├── 404.html ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── images │ └── yeoman.d2754b85.png ├── index.html ├── robots.txt ├── scripts │ ├── scripts.45ae9c72.js │ └── vendor.d4336f12.js ├── styles │ ├── main.d8d6dc72.css │ └── vendor.cabc70f2.css └── views │ └── room.html ├── package.json └── test ├── .jshintrc ├── karma.conf.js └── spec ├── controllers ├── about.js ├── home.js └── main.js ├── directives └── videoplayer.js └── services ├── config.js ├── io.js ├── roommanager.js └── videostream.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/.jshintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/README.md -------------------------------------------------------------------------------- /config/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "PORT": 5555 3 | } 4 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/index.js -------------------------------------------------------------------------------- /lib/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/lib/server.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/package.json -------------------------------------------------------------------------------- /public/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /public/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/.editorconfig -------------------------------------------------------------------------------- /public/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /public/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .tmp 3 | .sass-cache 4 | bower_components 5 | -------------------------------------------------------------------------------- /public/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/.jshintrc -------------------------------------------------------------------------------- /public/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/.travis.yml -------------------------------------------------------------------------------- /public/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/Gruntfile.js -------------------------------------------------------------------------------- /public/app/.buildignore: -------------------------------------------------------------------------------- 1 | *.coffee -------------------------------------------------------------------------------- /public/app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/app/.htaccess -------------------------------------------------------------------------------- /public/app/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/app/404.html -------------------------------------------------------------------------------- /public/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/app/favicon.ico -------------------------------------------------------------------------------- /public/app/images/yeoman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/app/images/yeoman.png -------------------------------------------------------------------------------- /public/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/app/index.html -------------------------------------------------------------------------------- /public/app/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /public/app/scripts/adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/app/scripts/adapter.js -------------------------------------------------------------------------------- /public/app/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/app/scripts/app.js -------------------------------------------------------------------------------- /public/app/scripts/controllers/room.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/app/scripts/controllers/room.js -------------------------------------------------------------------------------- /public/app/scripts/directives/videoplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/app/scripts/directives/videoplayer.js -------------------------------------------------------------------------------- /public/app/scripts/services/io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/app/scripts/services/io.js -------------------------------------------------------------------------------- /public/app/scripts/services/room.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/app/scripts/services/room.js -------------------------------------------------------------------------------- /public/app/scripts/services/videostream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/app/scripts/services/videostream.js -------------------------------------------------------------------------------- /public/app/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/app/styles/main.css -------------------------------------------------------------------------------- /public/app/views/room.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/app/views/room.html -------------------------------------------------------------------------------- /public/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/bower.json -------------------------------------------------------------------------------- /public/dist/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/dist/.htaccess -------------------------------------------------------------------------------- /public/dist/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/dist/404.html -------------------------------------------------------------------------------- /public/dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/dist/favicon.ico -------------------------------------------------------------------------------- /public/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/dist/images/yeoman.d2754b85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/dist/images/yeoman.d2754b85.png -------------------------------------------------------------------------------- /public/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/dist/index.html -------------------------------------------------------------------------------- /public/dist/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /public/dist/scripts/scripts.45ae9c72.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/dist/scripts/scripts.45ae9c72.js -------------------------------------------------------------------------------- /public/dist/scripts/vendor.d4336f12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/dist/scripts/vendor.d4336f12.js -------------------------------------------------------------------------------- /public/dist/styles/main.d8d6dc72.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/dist/styles/main.d8d6dc72.css -------------------------------------------------------------------------------- /public/dist/styles/vendor.cabc70f2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/dist/styles/vendor.cabc70f2.css -------------------------------------------------------------------------------- /public/dist/views/room.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/dist/views/room.html -------------------------------------------------------------------------------- /public/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/package.json -------------------------------------------------------------------------------- /public/test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/test/.jshintrc -------------------------------------------------------------------------------- /public/test/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/test/karma.conf.js -------------------------------------------------------------------------------- /public/test/spec/controllers/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/test/spec/controllers/about.js -------------------------------------------------------------------------------- /public/test/spec/controllers/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/test/spec/controllers/home.js -------------------------------------------------------------------------------- /public/test/spec/controllers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/test/spec/controllers/main.js -------------------------------------------------------------------------------- /public/test/spec/directives/videoplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/test/spec/directives/videoplayer.js -------------------------------------------------------------------------------- /public/test/spec/services/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/test/spec/services/config.js -------------------------------------------------------------------------------- /public/test/spec/services/io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/test/spec/services/io.js -------------------------------------------------------------------------------- /public/test/spec/services/roommanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/test/spec/services/roommanager.js -------------------------------------------------------------------------------- /public/test/spec/services/videostream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular-webrtc/HEAD/public/test/spec/services/videostream.js --------------------------------------------------------------------------------