1.0.1 • Published 6 months ago

@cloudflare/realtimekit-ui v1.0.1

Weekly downloads
-
License
-
Repository
github
Last release
6 months ago

RealtimeKit UI

RealtimeKit UI provides pre-built, ready-to-use UI components for integrating with Cloudflare RealtimeKit.

This package includes Web Components that work natively in HTML — so no framework required.

If you're using a specific framework, we also offer dedicated packages:

Usage

First, install RealtimeKit UI along with RealtimeKit:

@cloudflare/realtimekit is the core package that offers APIs to handle meetings in the client side. You use it to access and perform actions in a meeting.

npm i @cloudflare/realtimekit-ui @cloudflare/realtimekit

Then you'll need to initialize a meeting object once you've received an authToken of a participant from your APIs.

You call the RealtimeKit Add Participant API from your own backend API to get this authToken to use with RealtimeKit.

import RealtimeKitClient from '@cloudflare/realtimekit';

const meeting = await RealtimeKitClient.init({
  authToken: '<your-auth-token>',
  defaults: {
    video: true,
    audio: true,
  },
});

You can now pass this meeting instance to any of the components:

<!-- Load the component -->
<rtk-meeting id="my-meeting"></rtk-meeting>

<script>
  const init = async () => {
    const meeting = await RealtimeKitClient.init({
      authToken: '<your-auth-token>',
      defaults: {
        video: true,
        audio: true,
      },
    });

    const meetingEl = document.getElementById('my-meeting');
    meetingEl.meeting = meeting;
  };

  init();
</script>
1.0.1

6 months ago

1.0.0-staging.17

6 months ago

1.0.0-staging.16

6 months ago

0.1.0

7 months ago

1.0.0-staging.15

7 months ago

1.0.0-staging.14

7 months ago

1.0.0-staging.13

7 months ago

1.0.0-staging.12

7 months ago

1.0.0-staging.11

7 months ago

1.0.0-staging.10

7 months ago

1.0.0-staging.9

7 months ago

1.0.0-staging.8

7 months ago

1.0.0-staging.7

7 months ago

1.0.0-staging.6

7 months ago

1.0.0-staging.5

7 months ago

1.0.0-staging.4

8 months ago

1.0.0-staging.3

8 months ago

1.0.0-staging.2

8 months ago

0.0.0

8 months ago