I have found various ways to store a session ID in a cookie for expressjs. What I actually want is to store all my session data in a cookie and not have to worry about a server-side session store.
Why? My session data is tiny and having a session store adds unnecessary complexity in my case.
Can this be done with express? Bonus points if you know how to encrypt it.