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

@prudentbird/voxx-core

v0.0.6

Published

The portable content engine behind Voxx: markdown + frontmatter -> SEO-ready blogs, docs, and changelogs.

Readme

@prudentbird/voxx-core

The portable content engine behind Voxx: point it at a folder of markdown and get SEO-ready data for a blog, a docs site, or a changelog.

import {
  listPosts,
  getPost,
  buildNavTree,
  buildSeo,
} from "@prudentbird/voxx-core";

const { posts, total } = await listPosts({ limit: 10 }); // metadata, no rendering
const post = await getPost("getting-started/install"); // renders just this post
const nav = buildNavTree(posts); // sidebar tree for docs collections

What it does

  • Markdown in, structured data out — frontmatter validation (Effect Schema), GFM + raw HTML rendering, Shiki highlighting, heading slugs/anchors, table of contents, excerpts, reading time. .md only — there's no MDX compiler, so .mdx is ignored rather than silently stripped.
  • Scales to large collectionslistPosts returns post metadata with tag/category filtering and offset/limit pagination without rendering markdown, so indexes and feeds never pay to render posts they only list. getPost renders just the matched post.
  • Three content typesblog (flat, newest-first), docs (folder tree → nested URLs, 01- order prefixes, index.md section pages), changelog (versioned releases with anchor URLs).
  • SEO out of the box — canonical/OG/Twitter/JSON-LD via buildSeo, plus renderRss, renderSitemap, renderRobotsTxt, renderLlmsTxt, and renderLlmsFull.
  • Drafts stay privatedraft: true hides a post from getPosts and getPost until you opt in with includeDrafts: true (or drafts: true in config).
  • Configured by voxx.json — validated against the shipped voxx.schema.json; mount one collection via content or several via collections.
{
  "site": { "title": "Acme", "url": "https://acme.dev" },
  "collections": [
    { "name": "blog" },
    { "name": "docs", "type": "docs" },
    { "name": "releases", "type": "changelog", "basePath": "/changelog" },
  ],
}
const docs = await getPosts({ collection: "docs" });

Entry points

  • @prudentbird/voxx-core — plain Promise API.
  • @prudentbird/voxx-core/effect — the raw Effect programs, schemas, and tagged errors.
  • @prudentbird/voxx-core/telemetry — the anonymous usage-telemetry engine shared with the voxx CLI.
  • @prudentbird/voxx-core/theme/voxx.css — token-aware default styles (inherits shadcn design tokens when present).

Scaffolding lives in the voxx CLI; this package has no opinion about your framework.

Telemetry

The engine reports a single anonymous core_used event the first time you call any data function (loadConfig, getPosts, renderMarkdown, …) or withVoxx in a process — at most one event per process. It also reports an anonymous core_api_call event for each public core API call so we can understand which parts of the engine are used, whether they succeed, how long they take, and the rough shape of the work being done. Both events are anonymous, non-blocking, and privacy-preserving.

What is sent: a randomly generated install id, the package version, the Node version, the OS platform/arch, the public API name, success/failure, duration, content type, option flags, feature flags, result counts where relevant, and sanitized error tags/names/codes for failures or recoverable internal issues. What is never sent: arguments, file paths, slugs, collection names, post names, titles, error messages, or content.

It is a no-op in published builds without an embedded project key, and it never delays your process — events are flushed on beforeExit, raced against a short timeout.

Opt out at any time by setting any of these environment variables to a truthy value:

  • VOXX_TELEMETRY_DISABLED=1
  • DO_NOT_TRACK=1
  • CI=1 (also auto-disables in CI)

The persistent opt-out toggled by voxx telemetry disable is stored in ${XDG_STATE_HOME:-~/.local/state}/voxx/telemetry.json.