├── .gitignore ├── Readme.md ├── index.js ├── package.json ├── socket.js └── static ├── assets ├── call.css ├── call.js ├── logo.png └── profile.png └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BloggerNepal/WebRTC---Video-Call-with-SocketIO-Nodejs/HEAD/Readme.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BloggerNepal/WebRTC---Video-Call-with-SocketIO-Nodejs/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BloggerNepal/WebRTC---Video-Call-with-SocketIO-Nodejs/HEAD/package.json -------------------------------------------------------------------------------- /socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BloggerNepal/WebRTC---Video-Call-with-SocketIO-Nodejs/HEAD/socket.js -------------------------------------------------------------------------------- /static/assets/call.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BloggerNepal/WebRTC---Video-Call-with-SocketIO-Nodejs/HEAD/static/assets/call.css -------------------------------------------------------------------------------- /static/assets/call.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BloggerNepal/WebRTC---Video-Call-with-SocketIO-Nodejs/HEAD/static/assets/call.js -------------------------------------------------------------------------------- /static/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BloggerNepal/WebRTC---Video-Call-with-SocketIO-Nodejs/HEAD/static/assets/logo.png -------------------------------------------------------------------------------- /static/assets/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BloggerNepal/WebRTC---Video-Call-with-SocketIO-Nodejs/HEAD/static/assets/profile.png -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BloggerNepal/WebRTC---Video-Call-with-SocketIO-Nodejs/HEAD/static/index.html --------------------------------------------------------------------------------