Skip to content

Instantly share code, notes, and snippets.

@stagas
Created April 18, 2011 19:33
Show Gist options
  • Save stagas/926011 to your computer and use it in GitHub Desktop.
Save stagas/926011 to your computer and use it in GitHub Desktop.
connect/express favicon & session problem?
var express = require('express')
, app = express.createServer()
app.use(express.cookieParser())
app.use(express.session({ secret: 'foo' }))
app.use(function(req, res, next) {
console.log(req.url, typeof req.session)
next()
})
app.listen(80)
$ node favicon-test.js
/ object
/favicon.ico undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment