Replies: 4 comments 1 reply
|
Hey @sir007 , thanks for the kind words but I am honestly a little confused, this library here is a wrapper for integrating Jitsi with React You mentioned Meteorjs and Blaze, those are different frameworks, you could maybe consider including a minimal port of React like Preact to your existing project and have access to this library but you are probably better-off building a solution that targets your existing stack Perhaps you are looking for the Jitsi project instead? PS: you might also have tagged the wrong person who apparently had the same idea as I did but in TypeScript, I guess this project has a sister project I didn't know about 😁 👋 |
|
@this-fifo , Now how to write this library for blaze ? |
|
@sir007 no worries, I'm happy to help with what I can. I am honestly not familiar with that stack (meteor+blaze), but if you are comfortable with vanilla javascript you could just rely on the jitsi library, this project, for example, is simply a wrapper to theirs Take a look at https://github.com/jitsi/lib-jitsi-meet and https://jitsi.github.io/handbook/docs/dev-guide/dev-guide-iframe for some guidance You essentially just need 2 things: Their library included somewhere, like in your html: <script src='https://meet.jit.si/external_api.js'></script>An instance of their API object in JS const domain = 'meet.jit.si';
const options = {
roomName: 'JitsiMeetAPIExample',
width: 700,
height: 700,
parentNode: document.querySelector('#meet')
};
const api = new JitsiMeetExternalAPI(domain, options);Maybe you could build a more blaze-like experience with that code, I am not familiar enough with that framework to recommend anything but it is just plain old javascript I think that's a better alternative than including a bunch of React features that you're not going to need or will want to use in your project |
|
Thank you @this-fifo , I'm first of all going to try to use Jutsu component in meteor+blaze+react and share the result with you. |
Uh oh!
There was an error while loading. Please reload this page.
Thank you @gatteo for the great and useful library!
I am currently trying to integrate jitsi meet in a meteorjs 2.0 app (build with blaze).
Please can you direct me on how to integrate you jutsu library in an existing meteor blaze app?
All reactions