SQLite session store for Express/Connect session middleware. Version 0.0.1 is a legacy package that persists Express sessions to a SQLite database using the node-sqlite3 driver. It works with older versions of Connect/Express (before Express 4.x). No active development; superseded by modern alternatives like connect-sqlite3 or better-sqlite3-session-store. Key differentiator: minimal implementation for basic session storage without external database servers.
npm install connect-sqliteNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Basic Express session setup using connect-sqlite store with custom directory and database name.
Migrate to a maintained session store (see description).
Always call require('connect-sqlite')(require('express')).Pass options like { dir: './data', db: 'sessions.db' } to the constructor.Ensure you are using compatible versions (Express <4). For Express 4+, use a different store.
npm install connect-sqlite
Use var SQLiteStore = require('connect-sqlite')(require('express'));Ensure the directory exists and is writable. create table manually if needed.