
Research
/Security News
Bitwarden CLI Compromised in Ongoing Checkmarx Supply Chain Campaign
Bitwarden CLI 2026.4.0 was compromised in the Checkmarx supply chain campaign after attackers abused a GitHub Action in Bitwarden’s CI/CD pipeline.
express-session-sqlite
Advanced tools
SQLite-backed session store for express-session written in Typescript
A session store for express-session using SQLite.
Fully unit tested. PRs welcomed.
$ npm i express-session-sqlite --save
import express from 'express'
import sqliteStoreFactory from 'express-session-sqlite'
import session from 'express-session'
const SqliteStore = sqliteStoreFactory(session)
const app = express()
app.use(session({
store: new SqliteStore({
// for in-memory database
// path: ':memory:'
path: '/tmp/sqlite.db',
// Session TTL in milliseconds
ttl: 1234,
// (optional) Session id prefix. Default is no prefix.
prefix: 'sess:',
// (optional) Triggers a timer in milliseconds to run a cleanup on expired session rows.
// Default is 5 minutes.
cleanupInterval: 300000
}),
//... don't forget other expres-session options you might need
}))
FAQs
SQLite-backed session store for express-session written in Typescript
The npm package express-session-sqlite receives a total of 186 weekly downloads. As such, express-session-sqlite popularity was classified as not popular.
We found that express-session-sqlite demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.

Research
/Security News
Bitwarden CLI 2026.4.0 was compromised in the Checkmarx supply chain campaign after attackers abused a GitHub Action in Bitwarden’s CI/CD pipeline.

Research
/Security News
Docker and Socket have uncovered malicious Checkmarx KICS images and suspicious code extension releases in a broader supply chain compromise.

Product
Stay on top of alert changes with filtered subscriptions, batched summaries, and notification routing built for triage.