https://github.com/respoke/conferencing-demos
Small example application demonstrating Respoke multi-party audio conferencing
https://github.com/respoke/conferencing-demos
Last synced: 10 months ago
JSON representation
Small example application demonstrating Respoke multi-party audio conferencing
- Host: GitHub
- URL: https://github.com/respoke/conferencing-demos
- Owner: respoke
- License: mit
- Created: 2015-06-29T19:55:22.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-06-29T21:23:54.000Z (about 11 years ago)
- Last Synced: 2025-03-29T00:42:50.695Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 121 KB
- Stars: 2
- Watchers: 12
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# conferencing demos
This application is an example of using the conferencing feature of
[Respoke](https://www.respoke.io) to add realtime multi-party conferencing capabilities to any
web application. Both applications are functionally identical- the only difference is that one
is written in plain ES5 javascript, while the other is written using the
[React javascript ui library](http://facebook.github.io/react/) and ES2015 (ES6) via the
[Babel javascript transpiler](https://babeljs.io/docs/learn-es2015/).
## running the demos
You can see the demos in action at:
- plain javascript version: https://respoke.github.io/conferencing-demos/plain/
- react version: https://respoke.github.io/conferencing-demos/react/
You can also clone this repo and run them yourself using any sort of static file server, such
as the [python](https://wiki.python.org/moin/BeginnersGuide/Download) built-in http server:
```bash
git clone https://github.com/respoke/conferencing-demos
cd conferencing-demos/react
python -m SimpleHTTPServer
open http://localhost:8000
```
Another option is to tinker with the application on [codepen](http://codepen.io/):
- plain javascript version: http://codepen.io/chadxz/pen/ZGajxw
- react version: http://codepen.io/chadxz/pen/yNPWmp
## license
[MIT](LICENSE)