I am unable to figure out why disconnecting / connecting a socket.io connection multiple times is not working ?
Server side code:
io.on(\'connection\', f
Have you tried this config in client ?
// 0.9 socket.io version io.connect(SERVER_IP, {'force new connection': true}); // 1.0 socket.io version io.connect(SERVER_IP, {'forceNew': true});