I am using express framework and juggernaut. I looked through many examples about juggernaut, all examples using this method (client side):
var jug = new Juggernaut; jug.subscribe("channel_name", function(data){ console.log("Got data: " + data); });
It is safe? I donβt think that anyone can subscribe to a channel from the javascript console. Is there a way to subscribe to the channel from the server side?
source share