
Company News
Socket Joins New OpenJS Program to Fund Node.js Security Work
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.
@zensation/adapter-sqlite
Advanced tools
SQLite storage adapter for ZenBrain memory system. Zero-config, file-based, perfect for development and single-user deployments.
Zero-config SQLite storage adapter for ZenBrain. No database server needed.
npm install @zensation/core @zensation/adapter-sqlite
import { SemanticMemory } from '@zensation/core';
import { SqliteAdapter } from '@zensation/adapter-sqlite';
// File-based (persistent)
const storage = new SqliteAdapter({ filename: './my-memory.db' });
// Or in-memory (testing)
import { createMemoryAdapter } from '@zensation/adapter-sqlite';
const testStorage = createMemoryAdapter();
const memory = new SemanticMemory({ storage });
await memory.storeFact('FSRS outperforms SM-2 by 30%', 'research');
| Use Case | Adapter |
|---|---|
| Development / prototyping | SQLite |
| Single-user desktop app | SQLite |
| Unit tests | SQLite (:memory:) |
| Multi-user production | PostgreSQL |
| Vector similarity search | PostgreSQL (pgvector) |
const storage = new SqliteAdapter({
filename: './data/memory.db', // default: './zenbrain.db'
walMode: true, // default: true (better read concurrency)
logger: console, // optional
});
Apache 2.0
FAQs
SQLite storage adapter for ZenBrain memory system. Zero-config, file-based, perfect for development and single-user deployments.
The npm package @zensation/adapter-sqlite receives a total of 231 weekly downloads. As such, @zensation/adapter-sqlite popularity was classified as not popular.
We found that @zensation/adapter-sqlite demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Company News
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.

Security News
Two compromised GitHub Actions were re-enabled with malicious tags intact, exposing thousands of downstream repositories to Mini Shai-Hulud.

Research
/Security News
A malicious Firefox extension fetches its payload after installation to evade detection, steal Google session cookies, and automate account takeover.