im running a nodejs server + express + socket.io version 1.0.4 and everything works as expected in my app, but i just cant emit a message from server side to client side via
In 1.0 you should use:
io.sockets.connected[socketid].emit();
to emit to a specific client.
socket_server.sockets.socket(socket_id).emit();
has been replaced in socket.io 1.0.