connect-mongoose-session-store

2.0.1 • Public • Published

connect-mongoose-session-store

An implementation of connect session store with Mongoose.

* It also support passport authentication automatically.
* It keeps automatic session history
* Specified https://github.com/senchalabs/connect/blob/master/lib/middleware/session/store.js

Installation

$ npm install connect-mongoose-session-store

Usage

var express = require('express'),
sessionStore = require("connect-mongoose-session-store")(express),
app = express(),
server = http.createServer(app),
sessionStore = new sessionStore({
    host: 'localhost',
    port: 27017,
    db: 'mydb',
    stringify: false,
    maxAge: 60 * 60 * 1000,
    autoRemoveExpiredSession: true,
    sessionSchema: 'any_mongoose_schema',        // optional
    sessionHistorySchema: 'any_mongoose_schema'  // optional
});
app.use(express.session({
    secret: 'mlpi',
    key: 'mlpi.sid',
    cookie: {
      path: '/',
      domain: '',
      httpOnly: true,
      maxAge: 60 * 60 * 1000
    },
    store: sessionStore
}));

Important Note

This connect store will not store any session data unless you marked the forceUpdate.

for example:

To save a settings of session

req.session.myClientIp = 'xxxxxx'; req.session.forceUpdate = true; // make sure you call this to ensure its saving in the db correctly

Credits

License

The MIT License (MIT)

Copyright (c) 2013 Sajib Sarkar

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Package Sidebar

Install

npm i connect-mongoose-session-store

Weekly Downloads

18

Version

2.0.1

License

none

Last publish

Collaborators

  • sajibsarkar