In other words, can this run if I upload the html, js and other files to static hosting?
https://github.com/vasanthv/talk/blob/master/server.js
The actual P2P handshake is done through these default ICE servers defined in the client script.
https://github.com/vasanthv/talk/blob/master/www/script.js
const ICE_SERVERS = [ { urls: "stun:stun.l.google.com:19302" }, { urls: "turn:openrelay.metered.ca:443", username: "openrelayproject", credential: "openrelayproject" }, ];
In other words, can this run if I upload the html, js and other files to static hosting?