An open API service indexing awesome lists of open source software.

https://github.com/rootz491/rootz-conference

Video Chatting Application build using WebRTC (vanilla implementation)
https://github.com/rootz491/rootz-conference

Last synced: about 2 months ago
JSON representation

Video Chatting Application build using WebRTC (vanilla implementation)

Awesome Lists containing this project

README

          

# Overview

I experimented with WebRTC and created a simple video chat app. The app is built with React, Node.js, and WebRTC.

There maybe unwanted code and not optimized code. I just wanted to experiment with WebRTC.

- I will be updating this repo with more features and optimizations.
- I will also be creating a blog post about this project.
- I will also be creating a tutorial on how to build this project.

---

## Environment Variables

- backend envs

```
PORT = 8000
JWT_SECRET = k3yB0@rdC@t
```

- frontend envs

```
BACKEND_URL = http://localhost:8000
```

---

## Useful Links

- [WebRTC - Official](https://webrtc.org/getting-started/overview)
- [WebRTC - MDN](https://developer.mozilla.org/en-US/docs/Web/API/WebRTC_API)
- [Best Tutorial - youtube](https://www.youtube.com/watch?v=8I2axE6j204)
- [Tutorial Code - Github](https://github.com/Miczeq22/simple-chat-app)