
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
connect-mongodb
Advanced tools
connect-mongodb is a mongoDB session store backed by node-mongodb-native.
Originally written by dvv
This version is not compatible with 0.*
versions. Now you must pass a mongodb connection, or server configuration.
On updating, i recomment to delete your current sessions collection data.
via npm:
$ npm install connect-mongodb
To start connect-mongodb
, you have to pass instances of select node-mongodb-native classes, thus permitting the usage of existing connections
or server configurations.
Using an existing connection:
db
Existing connection/database reference (instance of mongodb.Db)Or with a server configuration:
server_config
Existing server configuration
(may be an instance of either mongodb.Server, mongodb.ServerPair, mongodb.ServerCluster, mongodb.ReplSetServers)
- review node-mongodb-native docs.Other options:
collection
MongoDB collection to host sessions. 'sessions' by defaultreapInterval
ms to check expired sessions to remove on dbusername
To authenticate your db connectionpassword
To authenticate your db connectionYou have a complete example on example/index.js
.
var connect = require('connect')
, Db = require('mongodb').Db
, Server = require('mongodb').Server
, server_config = new Server('localhost', 27017, {auto_reconnect: true, native_parser: true})
, db = new Db('test', server_config, {})
, mongoStore = require('connect-mongodb');
connect.createServer(
connect.bodyParser(),
connect.cookieParser(),
connect.session({
cookie: {maxAge: 60000 * 20} // 20 minutes
, secret: 'foo'
, store: new mongoStore({db: db})
})
);
This library is being tested using testosterone.
To run the tests:
make
FAQs
mongodb session store for connect
The npm package connect-mongodb receives a total of 60 weekly downloads. As such, connect-mongodb popularity was classified as not popular.
We found that connect-mongodb demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.