goodybag / pg-session

Connect session using postgres

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Postgres Connect Session Store

You know the drill

app.use(express.session({
  store:  new PGSessionStore({ connStr: 'my_pg_connection_string' })
, secret: 'ohai'
, cookie: { maxAge: new Date(3000, 0, 1) }
}));

About

Connect session using postgres