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

claude-md-viewer

v1.0.1

Published

Beautiful Vollkorn markdown viewer with live reload for Claude Code workflows

Readme

view-md

A beautiful local markdown viewer with live reload. Built for Claude Code workflows.

Opens your markdown file in the browser using the Vollkorn serif font — clean, readable, and typographically considered. Updates instantly when the file changes on disk.

Why

Reading raw markdown is unpleasant. Asterisks, hashes, backticks — it's noise that gets between you and the content. Paid apps like Typora solve this beautifully, but they're heavyweight tools that need to be installed, configured, and launched. Sometimes you just want to open a file and read it.

view-md is one command. No app to install, no preferences to set, no window to hunt for. The file opens in your browser, rendered in a clean serif typeface, and that's it.

Install

npm install -g claude-md-viewer

Or run without installing:

npx claude-md-viewer file.md

Usage

view-md path/to/file.md

The browser opens automatically. Edit the file and the browser updates live. Reload the tab and the content is still there.

From inside a Claude Code session, prefix with !:

! view-md path/to/file.md

Claude Code Integration

There are three ways to open files from within Claude Code:

1. Natural language — just tell Claude:

"open that file in the viewer" "view the plan" "preview README.md"

2. Slash command — install the /view-md skill by copying skills/view-md/ to ~/.claude/skills/, then:

/view-md path/to/file.md

3. Inline terminal — run directly from the Claude Code prompt:

! view-md path/to/file.md

For natural language and slash command support, add to ~/.claude/CLAUDE.md:

## Markdown Viewer

When asked to "open", "view", or "preview" a markdown file, run via Bash:
  view-md /absolute/path/to/file.md &

If view-md is not found, use:
  npx view-md /absolute/path/to/file.md &

Features

  • Live reload via Server-Sent Events — no WebSocket library needed
  • Vollkorn variable font bundled — no CDN, works offline
  • Zero npm dependencies — Node stdlib only
  • Survives page reload (content fetched from server, not FileReader)
  • Finds a free port automatically starting at 7337
  • Status dot in top bar flashes when reloading

Design

The typography is based on Vollkorn, a free serif typeface by Friedrich Althausen. The layout and reading experience is modeled after Typora's academic theme — justified text, centered headings, thin rule under h2, generous spacing.

License

MIT