1 Repo
Node.js database drivers that run SQLite3 queries synchronously, returning results inline without async patterns.
Distinct from Database Drivers: Distinct from Database Drivers: specifically focuses on synchronous execution in Node.js rather than general database driver interfaces.
Explore 1 awesome GitHub repository matching data & databases · Synchronous. Refine with filters or upvote what's useful.
better-sqlite3 is a high-performance SQLite3 client for Node.js that executes queries synchronously, returning results directly without callbacks or promises. It compiles as a native addon using N-API, binding directly to the SQLite3 C library for immediate query execution and zero-copy result serialization into native JavaScript objects. The library is optimized for Write-Ahead Logging (WAL) mode, enabling faster concurrent reads and writes in web applications. It provides durability level tuning through the synchronous pragma, allowing adjustments between FULL, NORMAL, and OFF modes to bala
A Node.js database driver that runs SQLite3 queries synchronously, returning results inline without async patterns.