Is there a cookie session store for nodejs (connect, express)?

Rails in the session store use cookies by default. the session is marshaled and signed with a secret key so that the client could not cope with it. this approach is highly scalable and does not require any backends to work.

I can not find anything like this for Express or Connect.

+5
express
Jan 22 '12 at 5:33
source share
1 answer

Connect 2x has one built-in module, and this is an example of how easy it would be to get something basic with Express 3x https://gist.github.com/1491756 with a new signed cookie support. You can still do the same without updating, but you need to use utils instead of those that get

+9
Jan 22 '12 at 16:32
source share



All Articles