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

plgg-content

v0.0.1

Published

A derived, rebuildable SQLite index over a git-primary Markdown corpus, with an HTTP-agnostic MicroCMS-like read-only query API and always-on FTS5 (BM25) search, built on the plgg family

Readme

plgg-content

UNSTABLE — Experimental study work (POC). Part of the plgg monorepo.

A derived, rebuildable SQLite index over a git-primary Markdown corpus, with an HTTP-agnostic, MicroCMS-like read-only query API and always-on FTS5 (BM25) search, built from scratch on the plgg family (plgg-md, plgg-sql, plgg-db-migration).

The governing decision is D4: content is git/filesystem-primary; SQLite is a derived, rebuildable index. Every row is reconstructable from the Markdown — losing the database costs nothing but a rebuildIndex. The primary operation is therefore a full, idempotent rebuild; incremental indexDocument / removeDocument are optimizations over it.

HTTP-free query core

The query surface is plain typed Db-taking functions, not an HTTP framework — the same functions back the SPA delivery API, the admin UI, the MCP tools, and the Claude Code plugin export. An HTTP layer (e.g. plggpress's /api mount) is a thin adapter over them.

import {
  openIndex,
  registerCollection,
  indexDocument,
  rebuildIndex,
  listCollection,
  getDocument,
  searchIndex,
} from "plgg-content";

// open a ready index (schema created idempotently)
const db = /* Ok */ await openIndex("content.db");

// ingest already-validated pages (ticket-17 content models
// validate upstream; plgg-content stores + serves)
await rebuildIndex(db)(pages);

// MicroCMS-style delivery
await listCollection(db)("blog", listQuery); // { contents, totalCount, limit, offset }
await getDocument(db)("blog", "/blog/hello"); // Option<Document>
await searchIndex(db)("kangaroo", 10);        // BM25-ranked hits, no LLM key needed

Design

  • Schema (Schema/) — documents (one row per page, typed frontmatter serialized), chunks (heading-scoped RAG/search granularity), collections (serialized CollectionSchema), and an external-content FTS5 table over chunks with its sync triggers — all emitted through plgg-sql's FTS5 builders (no raw FTS5 SQL). The schema is created idempotently via execScript (D4: the whole DB is rebuildable, so no versioned ledger).
  • Ingest (Ingest/) — a pure heading-scoped chunkBlocks fold over plgg-md's Block AST, a transactional idempotent indexDocument (skips an unchanged content_hash), and rebuildIndex (ingest
    • prune vanished paths).
  • Query (Query/) — listCollections / listCollection / getDocument / searchIndex, plus the ListQuery caster (bounded limit, closed orderBy, sanitized q) and the serializable CollectionSchema.
  • vendors/ — the only driver-aware code: the node:sqlite implementation of plgg-sql's Db seam.

The only runtime dependencies are plgg, plgg-md, plgg-sql, and plgg-db-migration; it is plggpress-agnostic (plggpress depends on it, never the reverse).