Skip to content

napejs/connect-jugglingdb-ex4

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

connect-jugglingdb

JugglingDB session store for Connect

Usage

var JugglingDB = require('jugglingdb');
var JugglingStore = require('connect-jugglingdb')(express);

// create JugglingDB schema object - can be any supported adapter
var schema = new JugglingDB.Schema('postgres', {
  database: 'mydbname'
});

app.use(express.session({
  store: new JugglingStore(schema, {
    table: 'sessions',                // juggling adapter table name
    maxAge: 1000 * 60 * 60 * 24 * 14  // default duration in milliseconds
  })
}));

schema.autoupdate(function(err) {
  if (err) console.error(err);
});

Note that maxAge can also be set in session.cookie.maxAge, see http://www.senchalabs.org/connect/session.html

Features

Automatic cleanup of expired sessions

About

JugglingDB session store for Connect EX4 compatible

Resources

License

Stars

Watchers

Forks

Packages

No packages published