A session store wrapper for Express/Connect that enables zero-downtime migration from one session store to another. Version 1.1.4 is the current stable release with low release cadence. It wraps two stores (e.g., Redis and DynamoDB) and transparently forwards reads and writes to both during migration. Unlike manual migration scripts, it preserves user sessions without forced logout. ESM-only not supported; CommonJS only.
npm install connect-migration-storeNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Creates a MigrationStore wrapping Redis (original) and DynamoDB (new) stores, using it with express-session middleware.
Use require('connect-migration-store')(session) to get the store class.Ensure both stores are from express-session compatible packages (e.g., connect-redis, connect-dynamodb).
Use require() or dynamic import with createRequire.
const MigrationStore = require('connect-migration-store')(session);npm install connect-migration-store
No dependency data recorded yet.