Reputation: 73
I am using
req.session.cookie.maxAge = 14 * 24 * 3600 * 1000 : 0
to let the session expire after two weeks. but now I want to make it expire after a browser close. Is there any way to do it?
Upvotes: 7
Views: 11221
Reputation: 146164
From the connect session middleware docs: "we can set req.session.cookie.expires
to false
to enable the cookie to remain for only the duration of the user-agent."
Upvotes: 9