I'm trying to use express.io module for the first time and I like it. It's really extended part of socket.io and express.js.
I'm trying to return socket.id in app.io.route event. How can I get client unique id using express.io?
app.io.route('debug', function(socket) {
console.log( socket.id );
});