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
- GitHub: https://github.com/Cap-go/capacitor-realtimekit/
- Docs: /docs/plugins/realtimekit/