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)
- Host: GitHub
- URL: https://github.com/rootz491/rootz-conference
- Owner: rootz491
- Created: 2023-03-14T20:02:48.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-14T09:51:11.000Z (almost 3 years ago)
- Last Synced: 2026-01-31T12:23:37.877Z (4 months ago)
- Language: JavaScript
- Size: 154 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: readme.md
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)