Errata: 1st Edition

Chapter 16, page 319, in the section Creating the Chat Server Functionality

There is a semi-colon missing from the line clientSocket.send(data).

The newly added lines should be:

ws.clients.forEach(function (clientSocket) {
  clientSocket.send(data);
});
1 Like