Skip to content

Instantly share code, notes, and snippets.

@chyld
Created February 24, 2014 17:39
Show Gist options
  • Select an option

  • Save chyld/9192999 to your computer and use it in GitHub Desktop.

Select an option

Save chyld/9192999 to your computer and use it in GitHub Desktop.
app.use(express.cookieParser());
app.use(express.session({
store : new RedisStore({host: 'localhost', port: 6379}),
secret: 'change-this-to-a-super-secret-message',
cookie: { maxAge: 60 * 60 * 1000 }
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment