I just did an 'npm update' and apparently got the latest version of
connect. Now, nowjs isn't successfully setting up its own .js file to
be returned when requested (as
myserver.com/nowjs/now.js). Anybody
else seen this happen?
I'm doing a trivial setup like this:
var showPage = function(req, res, next)
{
res.end(html);
}
var server = connect()
.use(connect.favicon(__dirname+'/favicon.ico'))
.use(showPage);
var everyone = nowjs.initialize(server, {socketio: {"log level": 2}});