UNPKG

cre-nodejs-server

Version:
7 lines (4 loc) 205 B
module.exports = function (socket) { console.log(socket.id + ' is now connected to our custom handler'); socket.on('disconnect', function () { console.log('Bye ' + socket.id + ' !'); }); };