I'm testing Twilio video on javascript to start a video call to either another javascript client or a mobile client. The javascript client is running in chrome with a server written in Java. There's no node.js runtime. I'm following the twilio video quickstarts but they all talk about npm and I see errors in my browser console about
ReferenceError: require is not defined
cause by
const { connect } = require('twilio-video');
Is the twilio-video SDK only compatible with nodejs or is it just the tutorials? is there a way to have a java backend that will allow to start video calls from a javascript client (browser) to another?