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

@abstractwebunit/markdown-publish

v1.0.6

Published

Publish an Obsidian/Markdown vault as a fast static site — search, link graph, canvas boards. CLI + GitHub Action.

Readme

A published vault: sidebar navigation, note content, interactive link graph

Publish your vault in a couple of clicks

Deploy to Netlify Deploy with Vercel

One click clones the starter template into your GitHub and builds the site. Drop .md files into vault/ — the site rebuilds on every commit. Prefer GitHub Pages? Use the template and enable Pages — the workflow is already inside.

Features

| Interactive link graph | Canvas boards | Instant search | |---|---|---| | Graph | Canvas | Search |

  • Search in the browser (Pagefind) — no server, Ctrl+K, works offline.
  • Link graph (WebGL) — global view + a local graph beside every note; smooth at 1,500+ notes.
  • Canvas boards — .canvas files (JSON Canvas) render as interactive boards: drag, resize, follow links.
  • Obsidian-flavoured Markdown — [[wikilinks]], embeds, callouts, tags, footnotes, code highlighting, backlinks, hover previews.
  • SEO out of the box — per-page meta/OG/JSON-LD, sitemap, robots.txt, llms.txt, and a generated social card with your site's name.
  • AI-agent ready — every site exposes WebMCP tools (search_notes, get_note, …) so agents can query your notes.
  • Non-Latin URLs — Cyrillic, CJK and other scripts survive in page addresses.
  • Light/dark theme, mobile layout, zero runtime dependencies — pure static output.

Use it as a CLI

npx @abstractwebunit/markdown-publish build --vault ./my-notes --out dist

Configure via flags or markdown-publish.config.json:

{
  "siteName": "My Notes",
  "siteLang": "en",
  "vaultDir": "vault",
  "buildMode": "full"
}

Key options: siteName, siteUrl, siteLang, siteDescription, vaultDir, buildMode (full | public — publish everything or only publish: public notes), baseHref (e.g. /repo/ for GitHub Pages project sites), home (explicit home note). Full reference: docs → Configuration.

Use it as a GitHub Action

- uses: abstractwebunit/markdown-publish@v1
  with:
    vault-dir: vault
    base-href: "/${{ github.event.repository.name }}/"
    site-url: "https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}"

A complete Pages workflow ships in templates/publish.yml; Netlify/Vercel configs in templates/.

How it works

A build-time Node parser turns the vault into a content bundle (notes, link graph, canvas models, search docs); an Angular SSG prerenders every route into static HTML. No backend, nothing to maintain — host the output anywhere.

License

MIT. Not affiliated with, endorsed by, or connected to Obsidian.MD Inc. — "Obsidian" is referenced only to describe vault compatibility; the .canvas format is the open JSON Canvas standard.