Skip to main content

--description--

You may notice that up to now you have only been increasing the user count. Handling a user disconnecting is just as easy as handling the initial connect, except you have to listen for it on each socket instead of on the whole server.

To do this, add another listener inside the existing 'connect' listener that listens for 'disconnect' on the socket with no data passed through. You can test this functionality by just logging that a user has disconnected to the console.

socket.on('disconnect', () => {
/*anything you want to do on disconnect*/
});

To make sure clients continuously have the updated count of current users, you should decrease currentUsers by 1 when the disconnect happens then emit the 'user count' event with the updated count.

Note: Just like 'disconnect', all other events that a socket can emit to the server should be handled within the connecting listener where we have 'socket' defined.

Submit your page when you think you've got it right. If you're running into errors, you can check out the project completed up to this point.

--hints--

Server should handle the event disconnect from a socket.

async (getUserInput) => {
const url = new URL("/_api/server.js", getUserInput("url"));
const res = await fetch(url);
const data = await res.text();
assert.match(data, /socket.on.*('|")disconnect('|")/s, '');
}

Your client should be listening for 'user count' event.

async (getUserInput) => {
const url = new URL("/public/client.js", getUserInput("url"));
const res = await fetch(url);
const data = await res.text();
assert.match(
data,
/socket.on.*('|")user count('|")/s,
'Your client should be connection to server with the connection defined as socket'
);
}