I am using PeerJS for audio calling functionality in my project. Their website is down and the cloud servers are no longer working.
The solution I came across is to use peerjs-server library.
I also came across the answer in this question that explains how to use peerjs-server
.
My question is what should I use in path
in the following code:
var PeerServer = require('peer').PeerServer;
var server = PeerServer({port: 9000, path: '/myapp'});
Is it the peer.js
file that I downloaded from here?
NOTE: the call functionality used to work, until PeerJS server went down and so does their website.
I would also appreciate any tips and guidance on how to implement peerjs-server
in Meteor.