npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@routier/sqlite-plugin

v0.3.0

Published

Dexie plugin for routier

Downloads

14

Readme

@routier/sqlite-plugin

Routier storage backed by SQLite, in Node and in the browser.

import { DataStore } from "@routier/datastore";
import { SqliteDbPlugin } from "@routier/sqlite-plugin";

class AppStore extends DataStore {
  constructor() {
    super(new SqliteDbPlugin("app.sqlite"));
  }
}

That code runs in both places. The package declares browser and node conditions, so a bundler resolves the WebAssembly build and Node resolves node:sqlite.

The plugin builds its SQL with @routier/sql-plugin-core, which it shares with the PostgreSQL and MySQL plugins.

Engines

The plugin talks to SQLite through a small driver interface — all, run, close, deleteDatabase. Three drivers ship with it.

| Driver | Where | Storage | Install | | --- | --- | --- | --- | | node:sqlite (default in Node) | Node 22.5+ | a file | nothing | | wasmDriver() (default in a browser) | any modern browser | OPFS | @sqlite.org/sqlite-wasm | | sqlite3Driver() | Node 18+ | a file | sqlite3 |

Both optional engines are optional peer dependencies: a Node application does not download a WASM binary, and a web application does not build a native module.

Node 18 or 20

node:sqlite needs Node 22.5. On an older Node, pass the sqlite3 driver and install sqlite3 yourself:

import { SqliteDbPlugin } from "@routier/sqlite-plugin";
import { sqlite3Driver } from "@routier/sqlite-plugin/drivers/sqlite3";

new SqliteDbPlugin("app.sqlite", { driver: sqlite3Driver() });

The browser

Install the engine, and let your bundler emit the worker and serve the .wasm asset:

npm install @sqlite.org/sqlite-wasm

Two things are worth knowing.

It runs in a worker, and that is not optional. OPFS is reachable only from a worker — FileSystemFileHandle.createSyncAccessHandle, which every OPFS VFS is built on, is undefined on the main thread. The driver spawns the worker for you with new Worker(new URL('./wasmWorker.js', import.meta.url), { type: 'module' }), the form Vite, webpack 5 and Rspack all understand. Pass workerUrl if your setup needs a different one.

No COOP or COEP headers are required. The driver uses the opfs-sahpool VFS rather than the plain opfs one, which needs SharedArrayBuffer and therefore cross-origin isolation. An ordinary page works.

For a database that should not survive a reload:

import { SqliteDbPlugin, wasmDriver } from "@routier/sqlite-plugin";

new SqliteDbPlugin("app.sqlite", { driver: wasmDriver({ storage: "memory" }) });

Contracts

Durability

SQLite's own. A committed transaction is on disk when COMMIT returns.

Every save runs inside one BEGIN IMMEDIATE transaction. If any statement fails, the whole save rolls back and the plugin reports the error.

Column types

SQLite has no boolean, date, array, or object column type. The plugin maps them as follows.

| Schema type | Column type | Notes | |---|---|---| | s.string() | TEXT | | | s.number() | REAL | | | s.boolean() | INTEGER | Stored as 0 or 1 | | s.date() | TEXT | ISO-8601 | | s.object(), s.array() | JSON | One column per root property |

Nested objects and arrays round-trip without a schema serializer. Booleans and dates come back as the stored form, so declare .serialize() and .deserialize() on those properties if you need the original JavaScript type. This is why the plugin runs the contract kit with supportsRichTypes: false.

Concurrency

SQLite serializes writers at the file level. In Node the plugin opens one connection per operation and closes it on every completion path, which is what lets that file locking do its job.

In the browser there is no second process to lock against, so the worker holds one database open for the life of the page and close() is a no-op. The SAH pool takes exclusive OPFS access handles: two tabs on one origin cannot hold the same database, and the second fails to open rather than corrupting it. Treat the browser plugin as single-tab unless you coordinate above it.

BEGIN IMMEDIATE takes the write lock up front, so a contended file fails the save with SQLITE_BUSY instead of failing part-way through.

Optimistic concurrency is supported. Wrap the plugin in ConcurrencyDbPlugin and a stale write fails with OptimisticConcurrencyError naming the row.

Process boundary

In Node, several processes may use one file. SQLite's locking makes that safe. Throughput is another matter: writers wait for each other.

In the browser, the boundary is the origin. OPFS storage is per origin and is not shared across origins. A browser may evict it under storage pressure unless the origin is persisted; navigator.storage.persist() asks for that.

Schema migration

Initialization only. The plugin runs CREATE TABLE when a table is missing. It never alters an existing table.

A schema change that adds, removes, or renames a column does not change a table that already exists, and the next write fails on the missing column. Migrate the database yourself.

Disposal

Call store.destroyAsync() to close and delete the database — the file in Node, the OPFS entry in a browser.

In Node, connections are per-operation and always closed, so a store that is never destroyed holds no file handles. A test run needs no --forceExit on account of this plugin.

Failure semantics

  • A statement error rolls the transaction back and fails the save.
  • A file that cannot be opened — a directory in its place, a permissions failure, a missing parent — fails the operation. It does not crash the process and does not hang.
  • A concurrency conflict fails the save with OptimisticConcurrencyError and writes nothing.
  • In the browser, a worker that cannot load fails every pending operation with an error naming the cause, rather than leaving them unresolved.

Supported versions

Node 22.5 or later with the default node:sqlite engine, which is built into Node and compiles nothing on install. Node 18 and 20 work with sqlite3Driver().

Browsers need OPFS and module workers: Chrome and Edge 108+, Safari 17+, Firefox 111+. The memory storage mode has no OPFS requirement.

See also