@makedo/vibelive
v0.8.6
Published
WebRTC video chat SDK for developers
Maintainers
Readme
VibeLive
Embed real-time video chat in your app in minutes. WebRTC-powered, developer-first SDK by Makedo.
Quick Start
Script tag (IIFE)
<script src="https://makedo.com/sdk/makedo-vibelive.min.js"></script>Script tag (ESM)
<script type="module">
import VibeLive from 'https://makedo.com/sdk/makedo-vibelive.esm.min.js';
</script>npm
npm install @makedo/vibeliveimport VibeLive from '@makedo/vibelive'; // ESM
const VibeLive = require('@makedo/vibelive'); // CJS / IIFEBasic Usage
VibeLive.init({ projectId: 'your-project-id' });
await VibeLive.signup('Your Name');
const room = await VibeLive.createRoom('My Room');
await VibeLive.enterByRoomCode(room.room_code);
await VibeLive.startLive();Requirements
- A VibeLive account and project ID — sign up at vibelive.site
Documentation
Full docs and API reference at vibelive.site/docs
