I've noticed noticed that when I restart my Express server, the session id saved on the browser is updated to a new value. Is this normal behavior? Is this something I can configure?
These are my current express-session
options:
var sessionOptions = {
secret: "secret_here",
resave: false,
saveUninitialized: true,
cookie: {
maxAge: 86400000
}
}