This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

session-rethinkdb

2.0.1 • Public • Published

session-rethinkdb

NPM Version NPM Downloads Node.js Version Build Status Dependency Status Coverage Status

NPM

downloads-url

RethinkDB session store for Express and Connect.

Installation

npm install session-rethinkdb

Usage

const r = require('rethinkdbdash')();
const session = require('express-session');
const RDBStore = require('session-rethinkdb')(session);
 
const store = new SessionStore(r, {
  browserSessionsMaxAge: 60000, // optional, default is 60000. After how much time should an expired session be cleared from the database
  clearInterval: 60000, // optional, default is 60000. How often do you want to check and clear expired sessions
});
 
app.use(session({
    // https://github.com/expressjs/session#options
    secret: 'keyboard cat',
        // Pass the store to express-session
    store: store,
        // This needs to be set for session-rethinkdb to work!
    resave: true,
    saveUninitialized: true
}));

Note: The API has changed in v2.0.

Refer to the example application for a full example.

Package Sidebar

Install

npm i session-rethinkdb

Weekly Downloads

44

Version

2.0.1

License

ISC

Last publish

Collaborators

  • llambda