views:

39

answers:

1

I am looking for a node.js framework which is capable of tracing user sessions via cookies/storage on the server side.

Storage has to be in MongoDB

+2  A: 

Look at the express framework. http://expressjs.com/ it is built on the connect middleware which has several middleware providers for the features you are after.

heavysixer
Thanks, but I couldn't find the example of code how MongoDB storage should be instantiated. If you know where to find that that'd be greatly appreciated!
Art
Try this: http://howtonode.org/express-mongodb
heavysixer