Using both expressjs/session and expressjs/cookie-parser means that the session management is actually not working. Since v1.5 session manages its own cookies, and having cookie-parser enabled as well causes a conflict. I tried having them share the same secret but it only make it worse. Removing cookie-parser completely at least gets the session working.
Using both expressjs/session and expressjs/cookie-parser means that the session management is actually not working. Since v1.5 session manages its own cookies, and having cookie-parser enabled as well causes a conflict. I tried having them share the same secret but it only make it worse. Removing cookie-parser completely at least gets the session working.