How to Integrate jitsi-meet in new react-app(Web) how can i use its component
See original GitHub issueI’m creating a new React-app and want to use jitsi-meet but there is no component, any doc I found to integerate JITSI-MEET in my React Application there is only simple js stuff they have provided i.e.
var domain = "meet.jit.si";
var options = {
roomName: "JitsiMeetAPIExample",
width: 700,
height: 180,
parentNode: undefined,
configOverwrite: {},
interfaceConfigOverwrite: {
filmStripOnly: true
}
}
var api = new JitsiMeetExternalAPI(domain, options);
}
but I need to know what are the industry standards to create a react-app(Web) with Jitsi-meet and what are the components I need to use and how can I integrate
I want to stream a single video in a div and customize it according to my own UI design
Issue Analytics
- State:
- Created 4 years ago
- Reactions:5
- Comments:5 (1 by maintainers)
Top Results From Across the Web
How to Integrate jitsi-meet in new react-app(Web) how can i ...
I'm creating a new React-app and want to use jitsi-meet but there is no component, any doc I found to integerate JITSI-MEET in...
Read more >Integrate Jitsi Meet to React application - Meetrix.IO
Integrate Jitsi Meet to React application. Way to include the best video conferencing platform to your existing React application.
Read more >How to Integrate Jitsi meet in React 2021 (External API ...
In this tutorial, I am gonna tell you how to integrate Jitsi Meet Iframe API in React. Also, how you can use your...
Read more >Create a Video Call Web App in 10 minutes with Jitsi and React
can share our screen · chat with other meeting members · create separate board room · create polls · change/blur background during video...
Read more >How to integrate Jitsi-Meet with reactjs web - Stack Overflow
And I used external API iframe also its working fine but I need more control on UI. Below is my react Component :...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@manojPebibits : You can use lib-jitsi-meet to do it. I have been able to do so using lib-jitsi-meet.js in ReactJS.
Can you create a custom UI with
lib-jitsi-meet
?