
Veet Video Calling App
Project Overview
A serverless video calling application built using Cloudflare's Durable Objects and WebRTC technology. This project demonstrates the power of stateful serverless architecture while exploring modern JavaScript and real-time communication patterns. The implementation showcases how to maintain state in a serverless environment using Durable Objects for coordinating WebRTC connections.
Key Features
Core Functionality
- Real-time video and audio communication using WebRTC
- Stateful room management with Durable Objects
- WebSocket-based signaling for connection establishment
- Zero external dependencies for core functionality
- Automatic peer discovery and connection
Technical Architecture
- Frontend Client: Pure JavaScript implementation for WebRTC and media streams
- Cloudflare Worker: Routing layer for client-Durable Object connections
- Durable Objects: State management and WebSocket coordination
- WebRTC: Peer-to-peer media streaming
User Experience
- Simple, intuitive interface for video calls
- Automatic camera and microphone handling
- Real-time connection status updates
- Responsive design for various devices
Technical Implementation
Durable Objects Integration
- State persistence across serverless function invocations
- WebSocket session management for signaling
- Coordinated peer connection establishment
- Room-based connection routing
WebRTC Implementation
- Peer connection setup and management
- ICE candidate handling and exchange
- Media stream capture and transmission
- Connection state monitoring
Technical Challenges
- Implementing stateful behavior in a serverless environment
- Coordinating WebRTC peer connections through WebSocket signaling
- Managing media streams and user permissions
- Handling peer disconnections and reconnections gracefully
- Ensuring reliable WebRTC connections across different network conditions
Learning Outcomes
- Practical application of Durable Objects for stateful serverless apps
- Real-world implementation of WebRTC peer-to-peer connections
- WebSocket communication in a serverless environment
- Modern JavaScript development practices
- Real-time communication patterns and best practices