Errata

Node: Up and Running

Errata for Node: Up and Running

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released. If the error was corrected in a later version or reprint the date of the correction will be displayed in the column titled "Date Corrected".

The following errata were submitted by our customers and approved as valid errors by the author or editor.

Color key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted By Date submitted Date corrected
PDF, Other Digital Version
Page 275
Example 7-11

In example 7-11 the index.jade should be:

title= pageTitle

not

title =pageTitle

The equals should be on the

Note from the Author or Editor:
This is correct, the equality symbol should be on the left, attached to the tags (title), in order to buffer 'pageTitle' for output.

Should be
title= pageTitle

not
title =pageTitle

Jamie Rytlewski  Jun 18, 2012 
Printed, PDF,
Page 47
1st paragraph

There's no mention of having to do a "npm install ejs" to install EJS. Not a huge issue, but this early in the book a reminder would be nice.

Note from the Author or Editor:
This is a valid point. Any templating framework you use with Express will need to be installed before it is used.

Anonymous  May 29, 2012 
Printed, PDF,
Page 63
example 4-10

As in example 4-9, the definition of the opts object in example 4-10 is missing a comma after the value for host. It should read:

var opts = {
host: 'www.google.com',
port: 80,
path: '/',
method: 'GET'
};

Note from the Author or Editor:
This example is missing a comma. One simply needs to be added as indicated.

Maurice Rickard  May 22, 2012