Unified Messaging Library

ChatLei

Your unified messaging library exported via CDN for seamless integration into React, Vue.js, Laravel, WordPress, and any frontend application.

๐Ÿš€ Quick Start

// 1. Include the SDK in your HTML <script src="/sdk/sdk.js"></script> // 2. Initialize the SDK const sdk = new ChatleiSDK({ cdnBaseUrl: '', debug: true }); // 3. Load the React components await sdk.init().load(); // 4. Access components via window.ChatleiReact.apps const { pages, startup } = window.ChatleiReact.apps;

๐Ÿ’ก Example: Mount a Page

// Mount the chat page in a container sdk.onMounted((apps) => { const container = document.getElementById('chat-container'); apps.pages.ExternalChatPage(container); });