Learning Web App Development

by Semmy Purewal

Missing parenthesis

page 194

20 Apr 2014

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!