Package Exports
- connect-mongodb-session
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (connect-mongodb-session) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
connect-mongodb-session
MongoDB-backed session storage for connect and Express. Meant to be a well-maintained and fully-featured replacement for modules like connect-mongo
API
MongoDBStore
This module exports a single function which takes an instance of connect
(or Express) and returns a MongoDBStore class that can be used to
store sessions in MongoDB.
It can store sessions for Express 4
If you pass in an instance of the
express-session module
the MongoDBStore class will enable you to store your Express sessions
in MongoDB.
Note: You can pass a callback to the MongoDBStore constructor,
but this is entirely optional. The Express 3.x example demonstrates
that you can use the MongoDBStore class in a synchronous-like style: the
module will manage the internal connection state for you.
var express = require('express');
var session = require('express-session');
var MongoDBStore = require('connect-mongodb-session')(session);
var app = express();
var store = new MongoDBStore(
{
uri: 'mongodb://localhost:27017/connect_mongodb_session_test',
collection: 'mySessions'
});
// Don't emit error
store.on('error', function(error) {
assert.ifError(error);
assert.ok(false);
});
app.use(require('express-session')({
secret: 'This is a secret',
cookie: {
maxAge: 1000 * 60 * 60 * 24 * 7 // 1 week
},
store: store
}));
app.get('/', function(req, res) {
res.send('Hello ' + JSON.stringify(req.session));
});
server = app.listen(3000);
underlyingDb.collection('mySessions').count({}, function(error, count) {
assert.ifError(error);
assert.equal(0, count);
request('http://localhost:3000', function(error, response, body) {
assert.ifError(error);
assert.equal(1, response.headers['set-cookie'].length);
var cookie = require('cookie').parse(response.headers['set-cookie'][0]);
assert.ok(cookie['connect.sid']);
underlyingDb.collection('mySessions').count({}, function(error, count) {
assert.ifError(error);
assert.equal(1, count);
var config = {
url: 'http://localhost:3000',
headers: { 'Cookie': 'connect.sid=' + cookie['connect.sid'] }
};
request(config, function(error, response, body) {
assert.ok(!response.headers['set-cookie']);
done();
});
});
});
});
It can store sessions for latest Express 3.x
If you're using Express 3.x, you need to pass the Express module itself
rather than the express-session module. Session storage is part of
the Express core in 3.x but not in 4.x.
Note: This example doesn't pass a callback to the MongoDBStore
constructor. This module can queue up requests to execute once the
database is connected. However, the MongoDBStore constructor will
throw an exception if it can't connect and no callback is passed.
var express = require('../vendor/express-3.18.1');
var MongoDBStore = require('connect-mongodb-session')(express);
var app = express();
var store = new MongoDBStore(
{
uri: 'mongodb://localhost:27017/connect_mongodb_session_test',
collection: 'mySessions'
});
app.use(express.session({
secret: 'This is a secret',
cookie: {
maxAge: 1000 * 60 * 60 * 24 * 7 // 1 week
},
store: store
}));
app.get('/', function(req, res) {
res.send('Hello ' + JSON.stringify(req.session));
});
server = app.listen(3000);
underlyingDb.collection('mySessions').count({}, function(error, count) {
assert.ifError(error);
assert.equal(0, count);
request('http://localhost:3000', function(error, response, body) {
assert.ifError(error);
assert.equal(1, response.headers['set-cookie'].length);
var cookie = require('cookie').parse(response.headers['set-cookie'][0]);
assert.ok(cookie['connect.sid']);
underlyingDb.collection('mySessions').find({}).toArray(function(error, docs) {
assert.ifError(error);
assert.equal(1, docs.length);
assert.equal(typeof docs[0]._id, 'string');
done();
});
});
});
It throws an error when it can't connect to MongoDB
You should pass a callback to the MongoDBStore constructor to catch
errors. If you don't pass a callback to the MongoDBStore constructor,
MongoDBStore will throw if it can't connect.
var express = require('../vendor/express-3.18.1');
var MongoDBStore = require('connect-mongodb-session')(express);
var app = express();
var numExpectedSources = 2;
var store = new MongoDBStore(
{
uri: 'mongodb://bad.host:27000/connect_mongodb_session_test?connectTimeoutMS=10',
collection: 'mySessions'
},
function(error) {
// Should have gotten an error
assert.ok(error);
--numExpectedSources || done();
});
store.on('error', function(error) {
assert.ok(error);
--numExpectedSources || done();
});
app.use(express.session({
secret: 'This is a secret',
cookie: {
maxAge: 1000 * 60 * 60 * 24 * 7 // 1 week
},
store: store
}));
app.get('/', function(req, res) {
res.send('Hello ' + JSON.stringify(req.session));
});
server = app.listen(3000);