louischatriot / connect-nedb-session

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

connect-nedb-session

IMPORTANT: this library is not maintained anymore, please don't submit anymore pull requests except for bugfixes

NeDB-backed session store for the Connect/Express session middleware. Only tested with Express 3, not 4

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

About

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


Languages

Language:JavaScript 100.0%