Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

connect-orm

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

connect-orm

orm session store for Connect

  • 0.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

connect-orm

orm session store for Connect

Usage

var orm = require('orm');
var session = require('express-session');
var OrmStore = require('connect-orm')(session);

// connect to orm db somewhere in the app
var db = orm.connect("mysql://root:password@localhost/test");

app.use(session({
  store: new OrmStore(db, {
    table: 'sessions',                // collection name
    maxAge: 1000 * 60 * 60 * 24 * 14  // default duration in milliseconds
  })
}));

Note that maxAge can also be set in session.cookie.maxAge, see https://github.com/expressjs/session

Features

Automatic cleanup of expired sessions Compatible with express 3 (version 0.1):

var OrmStore = require('connect-orm')(express);

Keywords

FAQs

Package last updated on 25 Jul 2014

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc