Learning Node.js, Express.js and Socket.io.
Made a Chat an it works so far.
Now I would like to emit to the Client, that a user has entered or left the chat by emiting a variable that indicates that...
Ist that possible?
So something like this:
Server.js
var users = [];
var inout;
function updateUsers(){
io.emit('users', users, 'inout', inout);
}
Client:
var socket = io.connect( 'http://'+window.location.hostname+':3000' );
socket.on('users', function(data){
// how to get the 'inout' here? }
Thanks for any Help... ;)