multiparty-meeting/app/lib/urlFactory.js

9 lines
229 B
JavaScript

export function getSignalingUrl(peerName, roomId)
{
const hostname = window.location.hostname;
const port = window.location.port;
const url = `wss://${hostname}:${port}/?peerName=${peerName}&roomId=${roomId}`;
return url;
}