gatteo / react-jitsi

React and Typescript component to include Jitsi Meet with ease
MIT License
107 stars 39 forks source link

Testing react-jitsi example on Meteorjs 2.0 #32

Open sir007 opened 3 years ago

sir007 commented 3 years ago

Thank you @gatteo for the great and useful library!

I am currently trying to integrate jitsi meet in a meteorjs app (build with blaze). The first step is to successfully do a standalone test with the example code of react-jitsi.

I tried to test the react-jitsi example in meteorjs 2.0 without success. I followed the following steps:

  1. Download the sample code of react-jitsi
  2. Create meteorjs app with the command: meteor create react-jitsi
  3. install app dependencies in root directory of the app with the command: meteor npm install
  4. Start the app with te command: meteor (I get a error)
  5. The following error is displayed in the meteorjs console: Exception from task TypeError: _objectSpread is not a function I20210202-13:40:40.536(1)? at Function.Log. [as error] (packages/logging/logging.js:173:8) I20210202-13:40:40.536(1)? at packages/webapp/webapp_server.js:635:13 I20210202-13:40:40.537(1)? at runWithEnvironment (packages/meteor.js:1286:24) I20210202-13:40:40.537(1)? at Object.task (packages/meteor.js:1299:14) I20210202-13:40:40.538(1)? at Meteor._SynchronousQueue.SQp._run (packages/meteor.js:917:16) I20210202-13:40:40.538(1)? at packages/meteor.js:894:12 W20210202-13:40:40.543(1)? (STDERR) /home/user/.meteor/packages/meteor-tool/.2.0.0.4luyuf.eesr5++os.osx.x86_64+web.browser+web.browser.legacy+web.cordova/mt-os.osx.x86_64/dev_bundle/server-lib/node_modules/fibers/future.js:313 W20210202-13:40:40.544(1)? (STDERR) throw(ex);

My question: Please, do you have a idea on what is wrong?