
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
jam-core-react
Advanced tools
React hooks for creating custom audio spaces like Clubhouse / Twitter Spaces, made with WebRTC
jam-core
is client-side JavaScript/TypeScript library for Jam. You can find out more about Jam on our Gitlab page.
jam-core-react
is a package that helps integrating jam-core
in a React app.
You can use it to build custom Jam UIs.
npm i jam-core-react
import React, {useState, useEffect} from 'react';
import {render} from 'react-dom';
import {JamProvider, useJam, use} from 'jam-core-react';
const jamConfig = {domain: 'jam.systems'};
// Wrap your app in a Provider
render(
<JamProvider options={{jamConfig}}>
<App />
</JamProvider>,
document.querySelector('#root')
);
function App() {
// get Jam state and API methods
let [state, api] = useJam();
// listen to specific state changes
let [myIdentity, roomId] = use(state, ['myIdentity', 'roomId']);
return (
<div>
User: {myIdentity.info.name ?? ''},<br />
Room: {roomId ?? ''}
</div>
);
}
The state
and api
objects are the same as returned by createJam()
in jam-core
. See the jam-core documentation for extensive documentation and examples of how to use them.
The additional steps to integrate with React are simple:
JamProvider
. This will call createJam()
for you.useJam()
hook to get state
and api
in any component inside the Provideruse(state, keys)
hook to update the component whenever one of the keys
in state
change.We have a complete example for a simple UI built with React: https://gitlab.com/jam-systems/jam/-/blob/master/ui/examples/tiny-jam-react/App.jsx
This example lets users create Jam rooms, share rooms by URL and talk to each other when in the same room -- in less than 100 lines of code.
The example is live on https://tiny-jam-react.vercel.app
FAQs
React hooks for creating custom audio spaces like Clubhouse / Twitter Spaces, made with WebRTC
We found that jam-core-react demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.