connect-nedb-session

0.0.3 • Public • Published

connect-nedb-session

NeDB-backed session store for the Connect/Express session middleware.

Install and test

npm install connect-nedb-session
npm test

How to use

// If you use Connect alone
var connect = require('connect')
 , session = connect.session
 , NedbStore = require('connect-nedb-session')(session);
 
// If you use Express
var express = require('express')
 , session = express.session
 , NedbStore = require('connect-nedb-session')(session);
 
// If you use Express 4.x
var express = require('express')
 , session = require('express-session')
 , NedbStore = require('connect-nedb-session')(session);
 
// Use with the session middleware (replace express with connect if you use Connect)
server.use(session({ secret: 'yoursecret'
                   , key: 'yoursessionkey'
                   , cookie: { path: '/'
                             , httpOnly: true
                             , maxAge: 365 * 24 * 3600 * 1000   // One year for example
                             }
                   , store: new NedbStore({ filename: 'path_to_nedb_persistence_file' })
                   }));

License

MIT

Package Sidebar

Install

npm i connect-nedb-session

Weekly Downloads

150

Version

0.0.3

License

none

Last publish

Collaborators

  • louischatriot