Skip to main content
Back to plugins
@capgo/capacitor-realtimekit
Tutorial
by github.com/Cap-go

RealtimeKit

Cloudflare Calls integration with built-in UI for video meetings and real-time communication

Guide

Tutorial on RealtimeKit

Using @capgo/capacitor-realtimekit

Capacitor RealtimeKit Plugin for Cloudflare Calls integration.

Install

bun add @capgo/capacitor-realtimekit
bunx cap sync

What This Plugin Exposes

  • initialize - Initializes the RealtimeKit plugin before using other methods.
  • startMeeting - Start a meeting using the built-in UI. Only available on Android and iOS.

Example Usage

initialize

Initializes the RealtimeKit plugin before using other methods.

import { CapacitorRealtimekit } from '@capgo/capacitor-realtimekit';

await CapacitorRealtimekit.initialize();

startMeeting

Start a meeting using the built-in UI. Only available on Android and iOS.

import { CapacitorRealtimekit } from '@capgo/capacitor-realtimekit';

await CapacitorRealtimekit.startMeeting({
  authToken: 'your-auth-token',
  enableAudio: true,
  enableVideo: true,
});

Full Reference