Express.js Book - Express Web Application Development » Topic: Errata ? http://expressjs-book.com/forums/topic/errata-2/feed/ Sat, 16 May 2015 19:58:12 +0000 http://bbpress.org/?v=2.5.4-5380 en-US http://expressjs-book.com/forums/topic/errata-2/#post-101 <![CDATA[Errata ?]]> http://expressjs-book.com/forums/topic/errata-2/#post-101 Thu, 19 Sep 2013 22:31:03 +0000 gdbtek on page 184:

app.use(express.session({ store: new RedisStore }));

shouldn’t it be. I got error notification from jslint

app.use(express.session({ store: new RedisStore() }));

]]>
http://expressjs-book.com/forums/topic/errata-2/#post-119 <![CDATA[Reply To: Errata ?]]> http://expressjs-book.com/forums/topic/errata-2/#post-119 Sun, 22 Sep 2013 10:21:49 +0000 Yaapa Not really errata, it is a common practice for instantiating a class which does not require any arguments. If JSLint does not give you an option for making this optional, you could try JSHint – http://www.jshint.com/ – it is the more customizable fork of JSLint.

]]>
http://expressjs-book.com/forums/topic/errata-2/#post-121 <![CDATA[Reply To: Errata ?]]> http://expressjs-book.com/forums/topic/errata-2/#post-121 Mon, 23 Sep 2013 05:00:34 +0000 gdbtek Thanks Yaapa

]]>