According to these: https://gist.github.com/2266544, Session support in Now.js.
This code should return the NowJS clientId, cookie and session:
nowjs.on('connect', function() { console.log(this.user); })
However, what I got was:
{ clientId: 'something', cookie: { } }
The cookie field is empty. There is no session entry (which I read is an official problem).
Additional Information
I am also using ExpressJS, PassportJS, Mongoose, session-mongoose. I initialized NowJS after configuring Express.
Question
Why is my cookie field empty and how can I get it populated?