Missing parenthesis
In the code example on page 194, there is a missing parenthesis at the end of the line that looks like this
app.use(express.static(__dirname + "/client");
Specifically, it should look like this.
app.use(express.static(__dirname + "/client"));
Thanks to both Nick Litwin and David Boles for reporting this issue!