{"id":29024501,"url":"https://github.com/sunjay-dev/video-calling-app","last_synced_at":"2026-04-10T15:05:04.178Z","repository":{"id":298922321,"uuid":"1000329026","full_name":"sunjay-dev/Video-calling-App","owner":"sunjay-dev","description":"A web app for instant video calls with screen sharing and real-time room creation, using WebRTC and Socket.io with a smooth React interface.","archived":false,"fork":false,"pushed_at":"2025-06-25T20:54:39.000Z","size":405,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-25T21:36:02.768Z","etag":null,"topics":["material-ui","react","redis","socket-io","webrtc"],"latest_commit_sha":null,"homepage":"https://call.sunjay.xyz","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sunjay-dev.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-11T15:56:17.000Z","updated_at":"2025-06-25T20:54:43.000Z","dependencies_parsed_at":"2025-06-13T17:02:38.809Z","dependency_job_id":null,"html_url":"https://github.com/sunjay-dev/Video-calling-App","commit_stats":null,"previous_names":["sunjay-dev/video-calling-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sunjay-dev/Video-calling-App","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunjay-dev%2FVideo-calling-App","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunjay-dev%2FVideo-calling-App/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunjay-dev%2FVideo-calling-App/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunjay-dev%2FVideo-calling-App/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sunjay-dev","download_url":"https://codeload.github.com/sunjay-dev/Video-calling-App/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunjay-dev%2FVideo-calling-App/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278734413,"owners_count":26036404,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-07T02:00:06.786Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["material-ui","react","redis","socket-io","webrtc"],"created_at":"2025-06-26T04:02:04.235Z","updated_at":"2025-10-07T06:56:44.056Z","avatar_url":"https://github.com/sunjay-dev.png","language":"JavaScript","readme":"# 📞 WebRTC Video Calling App\n\nA real-time one-on-one video calling application built using **React**, **WebRTC**, **Socket.io**, and **Node.js**. Features include camera/audio toggle, room link sharing, negotiation handling, and call ending.\n\n---\n\n## 🚀 Features\n\n- Peer-to-peer video calling using WebRTC\n- Signaling via Socket.io\n- Auto negotiation handling\n- Toggle camera/microphone\n- Shareable joining link\n- Clean React-based UI\n- Code base joining\n---\n\n## 🛠️ Tech Stack\n\n- **Frontend:** React, Tailwind CSS\n- **Backend:** Node.js, Express, Socket.io, Redis\n- **Other:** WebRTC\n- **UI Components:** reactVideoplayer, Material UI \n\n---\n\n## 📦 Installation\n\n### 1. Clone the repository\n\n```bash\ngit clone https://github.com/sunjay-dev/Video-calling-App\ncd video-calling-App\n````\n\n### 2. Install dependencies\n\n#### Backend (Node.js + Socket.io)\n\n```bash\ncd Backend\nnpm install\n```\n\n#### Frontend (React)\n\n```bash\ncd Frontend\nnpm install\n```\n\n---\n\n## ▶️ Running Locally\n\n### Start Backend\n\n```bash\ncd Backend\n```\n#### Create .env file\n```bash\nREDIS_HOST=REDIS_HOST_URI\nREDIS_PASSWORD=REDIS_PASSWORD\nREDIS_PORT=REDIS_PORT\nPORT=PORT\n```\n```bash\nnpm start\n```\n\n### Start Frontend\n\n```bash\ncd Frontend\n```\n#### Create .env file\n```bash\nVITE_BACKEND_URL=BACKEND_URL\n```\n```bash\nnpm run dev\n```\n\nOpen `http://localhost:5173` in your browser.\n\n---\n\n## 🌐 How It Works\n\n1. A user creates a room.\n2. The room link is shared with another user.\n3. When the second user joins, WebRTC offer/answer exchange happens via Socket.io.\n4. Media streams are transferred directly peer-to-peer.\n5. Automatic re-negotiation is handled as needed.\n\n---\n\n\n## 🔐 Permissions\n\nThis app requires access to:\n\n* 📷 Camera\n* 🎤 Microphone\n\nMake sure to allow permissions in your browser.\n\n---\n\n## 📁 Project Structure\n\n```\n/\n├── Frontend/               # React frontend\n│   └── components/       # UI components\n│   └── context/          # Socket context\n│   └── services/         # Peer (WebRTC) logic\n│   └── App.jsx           \n│   └── main.jsx          \n│\n├── Backend/               # Express + Socket.io backend\n│   └── App.js  \n|   └── server.js          \n│   └── socket.js \n|\n├── Assests/            # ScreenShots of App\n├── README.md\n```\n\n---\n\n## 📸 Screenshots\n\n#### Home  \n\u003cimg src=\"https://raw.githubusercontent.com/sunjay-dev/Video-calling-App/main/assets/preview.webp\" alt=\"Home page screenshot\"  width=\"600\"/\u003e\n\n#### Room  \n\u003cimg src=\"https://raw.githubusercontent.com/sunjay-dev/Video-calling-App/main/assets/room.webp\" alt=\"Room page screenshot\"  width=\"600\"/\u003e\n\n#### 404 Page  \n\u003cimg src=\"https://raw.githubusercontent.com/sunjay-dev/Video-calling-App/main/assets/404.webp\" alt=\"404 page screenshot\"  width=\"600\"/\u003e\n\n---","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsunjay-dev%2Fvideo-calling-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsunjay-dev%2Fvideo-calling-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsunjay-dev%2Fvideo-calling-app/lists"}