Web Application which allows multiple users to communicate live through a video call.
- Multi-Party Audio/Video Communication
- Text Chat
- Screen Sharing
- Annotation
- Provision to record the call and archive it
- Provision to mute video/audio
- Uses UDP protocol
Visit Tokbox and create an account to obtain credentials.
Add your OpenTok credentials to the options
hash in app.js
:
const options = {
credentials: {
apiKey: "YOUR_API_KEY",
sessionId: "YOUR_SESSION_ID",
token: "YOUR_TOKEN"
},
...
To run:
$ npm install
$ npm run build
$ node server.js
Then just go to browser and open localhost:8080.