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

qmvir

v6.2.3

Published

QMvir — Hybrid AI-Native Database: OLTP + OLAP + Search + Vector + Cache. Native Rust binary + JS/TS SDK.

Readme

qmvir

QMvir v6.2.3 — Hybrid AI-native database: OLTP + OLAP + full-text search + vector search in one Rust engine. PostgreSQL wire protocol. Production Multi-DC Enterprise Certified (optional HA cluster).

What's new in 6.2.3

  • Fix PG wire new_session() registration so node-pg connection pools can INSERT/UPDATE/DELETE (was Session not registered on connection 2+)

What's new in 6.2.2

  • npm README sync with published release docs

What's new in 6.2.1

  • Faster LIKE '%…%' id-only scans (packed int64 + columnar bridge)
  • Release pipeline fix: npm postinstall downloads GitHub binaries matching package.json version (no stale 6.2.0 bins)

Install

npm install [email protected]
# or global CLI
npm install -g qmvir
qm --version   # qm 6.2.3

Postinstall downloads the native binary (~8–13 MB) for your platform from GitHub releases.

Linux and Windows binaries are not bundled in the npm package (that would ship ~70 MB for all platforms). After npm install, scripts/postinstall.js fetches exactly one binary:

| Platform | Downloaded asset | |----------|------------------| | macOS Apple Silicon | qm-macos-arm64 | | macOS Intel | qm-macos-x86_64 | | Linux x86_64 | qm-linux-x86_64 | | Linux ARM64 | qm-linux-aarch64 | | Windows x86_64 | qm-windows-x86_64.exe | | Windows ARM64 | qm-windows-aarch64.exe |

If a cached binary reports a different version, postinstall re-downloads automatically.

Quick start

qm --data-dir ./data start --admin-password secret
psql -h 127.0.0.1 -p 55433 -U admin -d qm
CREATE TABLE users (id INT PRIMARY KEY, name TEXT);
INSERT INTO users VALUES (1, 'Alice');
SELECT * FROM users;

SDK (JavaScript / TypeScript)

import { QMClient } from "qmvir";

const qm = new QMClient("http://localhost:8400", { apiKey: "your-key" });
const rows = await qm.find("users", { where: { status: "active" }, limit: 10 });
const hits = await qm.search("articles", "machine learning", { strategy: "hybrid", limit: 20 });

CLI highlights

qm --data-dir ./data backup -o backup.qmvb
qm --data-dir ./data inspect --tables
qm cluster status              # when QM_CLUSTER_ENABLE=1
qm cluster certify             # enterprise HA certification
qm cluster guide               # HA setup walkthrough
qm guide quickstart

Platforms

| Platform | Binary | |----------|--------| | macOS Apple Silicon | qm-macos-arm64 | | macOS Intel | qm-macos-x86_64 | | Linux x86_64 | qm-linux-x86_64 | | Linux ARM64 | qm-linux-aarch64 | | Windows x86_64 | qm-windows-x86_64.exe | | Windows ARM64 | qm-windows-aarch64.exe |

Documentation

Full docs in the source repository:

| Topic | Link | |-------|------| | Architecture | docs/QMVIR_ARCHITECTURE.md | | Algorithms | docs/QMVIR_ALGORITHMS.md | | Basic usage | docs/BASIC_USAGE.md | | Enterprise HA | docs/ENTERPRISE_HA_GUIDE.md | | Doc index | docs/README.md |

License

See LICENSE in this package.