Fishjam React Client
@fishjam-cloud/react-client — Fishjam's React SDK for browser apps. Wrap your app in FishjamProvider, then use hooks to drive devices, connection, and peers.
Read
../platform/SKILL.mdfirst. It defines what rooms, peers, tokens, and the sandbox-vs-prod model are. This skill assumes those.For React Native, use
../react-native-client/SKILL.mdinstead — it re-exports this hook surface and adds mobile-only concerns.
Minimal setup
npm install @fishjam-cloud/react-client
# or yarn add @fishjam-cloud/react-client
import { FishjamProvider, useConnection, useSandbox } from '@fishjam-cloud/react-client';
function App() {
return (
<FishjamProvider fishjamId={import.meta.env.VITE_FISHJAM_ID}>
<Room />
</FishjamProvider>
);
}
function Room() {
// DEV — sandbox flow (no backend needed):
const { getSandboxPeerToken } = useSandbox({ sandboxApiUrl: import.meta.env.VITE_SANDBOX_API_URL });
const { joinRoom } = useConnection();
const handleJoin = async () => {
const peerToken = await getSandboxPeerToken('test-room', 'alice');
await joinRoom({ peerToken });
};
return <button
}
For production, replace useSandbox with a call to your own backend that returns a peer token (see ../platform/sandbox-vs-production.md):
const peerToken = await fetchPeerTokenFromYourBackend(roomName);
await joinRoom({ peerToken });
Hook catalog (decision tree)
| What you need | Hook | Reference |
|---|---|---|
| Open / close the connection | useConnection |
connection.md |
| Sandbox tokens for prototyping | useSandbox |
connection.md |
| Camera | useCamera |
devices.md |
| Microphone | useMicrophone |
devices.md |
| Screen share | useScreenShare |
devices.md |
| Initialize devices on app load | useInitializeDevices |
devices.md |
| Render peers + their tracks | usePeers (returns PeerWithTracks) |
peers-and-tracks.md |
| Livestream as broadcaster | useLivestreamStreamer |
livestream.md |
| Livestream as viewer | useLivestreamViewer |
livestream.md |
Push a MediaStreamTrack you generated yourself |
useCustomSource |
custom-sources.md |
| Peer-to-peer messages (text chat, signals) | useDataChannel |
data-and-events.md |
| Detect when a remote peer is speaking | useVAD |
data-and-events.md |
| Update your peer's metadata mid-session | useUpdatePeerMetadata |
data-and-events.md |
Get WebRTC RTCStatsReport for debugging |
useStatistics (from @fishjam-cloud/react-client/debug) |
provider.md |
| Configure simulcast / bandwidth | (props on FishjamProvider) |
simulcast-and-bandwidth.md |
| Use Fishjam from non-React code (workers, Svelte, vanilla TS) | @fishjam-cloud/ts-client |
ts-client-escape.md |
Key rules
- One
FishjamProviderper app. Don't nest. It owns theFishjamClient, all device managers, and reconnection state. useSandboxis dev-only. Gate it withif (import.meta.env.DEV)(or equivalent) so a sandbox URL can never ship in a production bundle.- Browser requires user gesture for
useScreenShare— call inside anonClick, not on mount. - Devices stay mounted across connection state. Initializing with
useInitializeDevicesonce is enough — they remain available after youleaveRoom. - Livestream rooms have a one-track-per-direction constraint. One video + one audio on the streamer; viewers don't publish.
- For non-React contexts (Svelte, Vue, workers, vanilla TS), use
@fishjam-cloud/ts-clientdirectly. The React SDK is a thin layer over it. Seets-client-escape.md. - The provider re-exports
Variantfromts-clientfor simulcast quality (Variant.VARIANT_LOW | Variant.VARIANT_MEDIUM | Variant.VARIANT_HIGH).
References
| File | When to read |
|---|---|
provider.md |
All FishjamProvider props — fishjamId, reconnect, constraints, persistLastDevice, bandwidthLimits, videoConfig, audioConfig, debug, fishjamClient. |
connection.md |
useConnection (joinRoom, leaveRoom, peerStatus, reconnectionStatus) and useSandbox. |
devices.md |
useCamera, useMicrophone, useScreenShare, useInitializeDevices. Device enumeration, switching, persistence. |
peers-and-tracks.md |
usePeers — localPeer, remotePeers, the PeerWithTracks shape. |
livestream.md |
useLivestreamStreamer, useLivestreamViewer, public vs private flows. |
custom-sources.md |
useCustomSource, TrackMiddleware, TracksMiddleware. |
data-and-events.md |
useDataChannel, useVAD, useUpdatePeerMetadata. |
simulcast-and-bandwidth.md |
Variant, BandwidthLimits, SimulcastConfig via videoConfig / audioConfig. |
ts-client-escape.md |
When and how to drop to @fishjam-cloud/ts-client. |