Skip to content

Instantly share code, notes, and snippets.

@ayanchoudhary
Created May 9, 2021 16:13
Show Gist options
  • Save ayanchoudhary/ffd436b446b447ada7c3030df9cbbe03 to your computer and use it in GitHub Desktop.
Save ayanchoudhary/ffd436b446b447ada7c3030df9cbbe03 to your computer and use it in GitHub Desktop.
session creation
app.use(session({
/* Change this to your own secret value */
secret: 'this-is-secret',
resave: true,
saveUninitialized: true,
cookie: {
secure: false,
maxAge: 6000000
}
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment