My question is much like this guys... how to create and run my own peerjs server?
On the peerjs Quick Start you have the options of... Creating their server (Doesn't Work), or creating your own server(Does Work).
The documentation if you want to call it that has no help for how to handle a call in "server.js" if that's what you're calling it.
In the Source of, http://cdn.peerjs.com/demo/videochat/ on line 37, you make a "call"... Then what?
I have an index.html, that connects fine, I have a server.js that runs with no errors in node.... I can say Hello World all I want, but, How to Handle a Call, and Answer a call
http://jsfiddle.net/cbaftkzn/1/
$('#make-call').click(function(){
var call = peer.call($('#callto-id').val(), window.localStream);
step3(call);
});
A Frustrated Thank you...