1 repositorio
Running SQL queries in Node.js with synchronous execution, returning results directly without callbacks or promises.
Distinct from SQL Query Execution: Distinct from SQL Query Execution: specifically focuses on synchronous SQLite3 execution in Node.js rather than general SQL execution.
Explore 1 awesome GitHub repository matching data & databases · Synchronous SQLite3 Executions. 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
Runs SQL queries in Node.js with synchronous execution, returning results directly without callbacks or promises.