How can I make the connect.sid cookie itself only a session cookie instead of a persistent one?
I unsuccessfully tried
app.use(express.session({cookie: { path: '/', httpOnly: true}, secret:'eeuqram'}));
But the cookie still had the expiration timestamp.