
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
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
}))
1.0.5 - Sun Mar 22 2020 20:15:21
Updated sqlite
to 4.0.0-beta.6
FAQs
SQLite-backed session store for express-session written in Typescript
The npm package express-session-sqlite receives a total of 129 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.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.