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

@kung-fu/minerva

v0.23.1

Published

Static site generator and package for converting Markdown files to HTML.

Readme

Minerva Publish

Easy, minimalist approach to publishing markdown as static site content for magazine and blog sites.

⚠️ Documentation TODO

This README is badly out of date — Minerva gained a lot of capability (≈ v0.20.x) that is not documented anywhere yet. Before publishing/sharing, write real docs covering:

  • Folder-scoped lists / feedsfolder: now filters the source set (only pages under content/<folder>/), not just the output directory. Backward-compatible: omit folder to include everything. (selectPages in file.ts is the single source of truth for folder + property/key category + order + skip/limit.)
  • collections: config — named, Eleventy-style collections exposed to every template as collections.<name> (collection.ts).
  • Per-file permalink frontmatter + the includeFoldersInURL / includeExtension URL options, all unified in structure.ts (getOutputPath / getOutputLink); the view's on-disk path and the template link always agree.
  • output.trailingSlash — emit pretty name/index.html so URLs end in a slash; the template link (and every canonical/OG/sitemap/RSS URL derived from it) carries it. Defaults off.
  • output.linkifyBareUrls — opt-in markdown-it "fuzzy" auto-linking of bare domains in prose (example.com<a>). Defaults off, so a domain typed in body text stays plain text; explicit [text](url) links and full http(s):// URLs always linkify.
  • sections: data cascade — per-folder frontmatter defaults merged beneath each file's own frontmatter (globals < section < frontmatter).
  • Per-section view layoutsview.templates can hold multiple templates; a page's layout (frontmatter or section default) selects which one renders it.
  • link in static/list contexts — static pages and list/index pages now receive their own link, so layouts can emit canonical/OG tags for them (added v0.20.2).
  • --watch / -w — rebuild-on-change dev mode (watches source, the layout dir, and every configured assets dir; debounced). Pipeline is now fully async/awaited, and copy() awaits all asset copies (no clean()-vs-copy race under watch).
  • Page store keyed by relative path (not datePublished) so two posts sharing a timestamp can't silently collide.
  • Correctness fixes to document/note: get/getOne helpers, feed maxItems applied after filtering, RFC-822 RSS dates.
  • Test suite exists now (npm test → mocha + nyc; fixtures under test/fixtures/).
  • Depends on @kung-fu/moneta ^2.1.0 (its where operators / dot-path keys are used by the query layer).

Credits

slash() method retrieved from https://github.com/sindresorhus/slash