Peerbind: convert a webpage into a massively interconnected website 15 years ago
Nice! Any chance you know if (and where) we can report issues?
One possible issue:
It seems that binding to the same peer-event multiple times, also SENDS all outgoing events multiple times. For example, open the example website peerbind.com and then run:
$('#chatinput').peerbind("change", { peer: function(e) { console.log("Incoming", e.peerSrc, e.peerData); } });
Now, by simply binding to incoming events twice, everything one sends in the chat, is sent twice too. I guess that's not the expected behavior?
Still, nice! And for those who agree that the chat example is not very secure: peek into the HTML source for the actual implementation! ;-)