Node.js framework with sessions support in MongoDB
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 开发者_JS百科MongoDB
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.
You can use the express framework, and to use MongoDB storage you will need connect-mongodb. It does exactly what you're looking for and no more.
精彩评论