Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
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
The npm package jam-core-react receives a total of 7 weekly downloads. As such, jam-core-react popularity was classified as not popular.
We found that jam-core-react demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.