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

@minnowdb/core

v0.2.1

Published

A columnar SQL engine that runs entirely in the browser: real SQL over immutable snapshots, durable on IndexedDB or OPFS, with no WebAssembly to download.

Readme

@minnowdb/core

Columnar SQL engine for the browser: real SQL over immutable snapshots, durable on IndexedDB or OPFS, with no WebAssembly to download. It runs in the thread that constructs it (MinnowDatabase), or in a worker through MinnowDatabaseClient, which mirrors the everyday query, write, migration, live-query, snapshot, and maintenance APIs.

minnowdb.com — documentation, a live console, and benchmarks you run yourself.

npm install @minnowdb/core
  • SQL is the foundation — parser, planner, optimizer, and a batch-based executor written here, with no SQLite or DuckDB underneath. The supported surface ships as a checked-in feature matrix (@minnowdb/core/sql-feature-matrix.json) that the engine is tested against.
  • One schema, in TypeScripttable(), column, and schema() declare tables once and migrate() evolves them without rewriting stored data.
  • Full-text searchMATCH / BM25 on any column, with no index DDL to write.
  • Live queriesliveQueries() hands back a set whose subscribers get a fresh result after any commit that could have changed it, across tabs.
  • Durable browser storage — compressed columnar blocks on IndexedDB or OPFS, atomic multi-tab commits, snapshot reads, compaction and GC.
  • Memory-aware queries — execution works in batches under a budget you set, and sorts and grouped results can spill to storage. The budget is not a hard heap limit yet.
  • Subpath exports/storage, /storage/toolkit, /client, /worker, /worker-protocol, /transactions, /plan, /block-format, /testing.

Guides, the API reference, and the SQL feature matrix live in the docs, which are the single source of truth. Building with an agent? minnowdb.com/agent-rules.md is a short rules file to drop into an AGENTS.md, and llms.txt indexes the documentation in markdown.

Every @minnowdb package shares a major version and moves independently inside it, so install them on the same major. See Versioning.

License

MIT