I´m going crazy with socket.io! Documentation is so bad it\'s simply not true.
I want to send a feedback to specific client over socket.io
My server side loo
i tired with the latest version of node and socket.io below i am going to post complete code
server side code
var usernames = {};io.on('connection', function(socket){usernames["username"] = socket.id;
socket.on('drumevent', function(msg){
var socketId = socket.id;io.to(socketId).emit('drumevent', data);