Configure and test your Ethora chat integration
Pick an industry to load a ready-made chat, see it live, and copy the exact code to drop into your own app. Open-source frontend, self-hostable backend β runs from a free cloud prototype up to a HIPAA-ready, on-prem deployment.
Provisions a temporary guest user and room β nothing to sign up for.
# 1. Install the React chat component
npm install @ethora/chat-component
# 2. Drop it into your app
import { Chat, XmppProvider } from '@ethora/chat-component';
export default function App() {
return (
<XmppProvider>
<Chat config={{ baseUrl: 'https://api.chat.ethora.com/v1' }} />
</XmppProvider>
);
}