#Errata
The book contains examples from Express 2. These will work correctly if used with Express 2 but will fail with Express 3. The code examples on GitHub have been updated to use Express 3. The examples in the book use a Twitter bootstrap file that is no longer available. This has also been updated in the code examples on GitHub.
The book contains examples from Express 2. These will work correctly if used with Express 2 but will fail with Express 3. The code examples on GitHub have been updated to use Express 3.
The book contains examples from Express 2. These will work correctly if used with Express 2 but will fail with Express 3. The code examples on GitHub have been updated to use Express 3.
In the Try It Yourself after Listing 5.5 point 2 lists starting the server with node server.js
. This should read node client.js
(thanks to L Nestor).
- Due to API changes in 0.8.x the event for a worker dying is now
exit
rather thandeath
. The example has been updated to reflect this. - Due to API changes in 0.8.x accessing a worker PID is now
worker.process.pid
rather thanworker.pid
. The example has been updated to reflect this.