Jitsi Meet: Open source video conferencing platform
WebRTC video conferencing with self-hosting and embeddable SDKs.
Learn more about Jitsi Meet
Jitsi Meet is a video conferencing platform built on WebRTC technology that provides both hosted and self-hosted deployment options. The architecture includes a web application, mobile clients for Android and iOS, and server components that can be deployed via Debian packages or Docker. It uses an SFU (Selective Forwarding Unit) approach for media routing and supports end-to-end encryption for participant communications. Common deployment scenarios include public instances, private enterprise installations, and embedded conferencing features within third-party applications.
Self-Hosted Infrastructure Options
Deploy via Debian packages or Docker with complete control over servers and data. Organizations run independent instances without reliance on third-party hosted services, enabling custom configurations and compliance requirements.
Multi-Platform Client Support
Browser-based conferencing works without plugins across current web browsers. Native Android and iOS apps plus embeddable SDKs enable integration into existing applications with consistent feature parity.
End-to-End Encryption Implementation
E2EE secures participant communications with documented technical specifications and key management. Security architecture and vulnerability reporting procedures are formally maintained in project documentation for audit and compliance verification.
const domain = 'meet.jit.si';
const options = {
roomName: 'MyTeamMeeting',
width: 700,
height: 700,
parentNode: document.querySelector('#meet')
};
const api = new JitsiMeetExternalAPI(domain, options);
api.addEventListener('videoConferenceJoined', () => {
console.log('User joined the conference');
});Top in Networking
Related Repositories
Discover similar tools and frameworks used by developers
cURL
Command-line tool and C library for URL-based data transfer supporting 25+ protocols.
Zapret
Windows zapret implementation for bypassing Discord and YouTube restrictions via DPI circumvention.
Gluetun
Lightweight Go VPN client for routing containerized traffic.
ProxyChains
Force TCP connections through chained SOCKS/HTTP proxies via LD_PRELOAD.
ws
WebSocket client and server for Node.js with RFC 6455 support and compression.
Related Reading
Guides and comparisons from the Greptile content library
How to ACTUALLY Think About Code Reviews: The 3-Layer Checklist
A code review checklist and best practices organized around three layers — Mechanical, Structural, and Narrative — that help any team improve code quality without slowing reviews down.
Best Security-Focused AI Code Review Tools [2026 Guide]
The six best security-focused AI code review tools, compared on SAST, SCA, DAST, and full-repo context, so you can pick the one that fits your codebase and your cycle times.
Top AI Code Review Tools for Small Dev Teams 2026
Affordable, lightweight AI code review tools that help small teams catch bugs faster. Practical comparisons of accuracy, ease of use, and value for teams without enterprise budgets.
Best Code Review Tools in 2026
The best code review tools in 2026, compared on pricing, features, deployment options, and ideal use cases for teams of any size.