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

open-md

v0.3.1

Published

Convert a markdown file to a readable HTML page and open it in the browser.

Readme

open-md

Convert a markdown file to a styled HTML page and open it in the browser — one command, no setup.

npx open-md@latest path/to/file.md

open-md takes a markdown file, renders it to a complete, self-contained HTML page, and opens it in your default browser. Useful when working with coding agents: let the agent produce markdown (its best format), then read the result as a properly styled document.

Install & Usage

No install required — run directly with npx:

# Convert and open
npx open-md@latest document.md

# Convert without opening the browser
npx open-md@latest document.md --no-open

The HTML is written next to the source file as document.md.html.

If you use it often, install globally:

npm install -g open-md
open-md document.md

Give your coding agent this document to set up:

https://raw.githubusercontent.com/realtrung/open-md/main/AGENT_SETUP.md

Features

  • GitHub-Flavored Markdown — tables, task lists, footnotes, strikethrough, autolinks.
  • Syntax highlighting — fenced code blocks with a language tag are highlighted via highlight.js. Unlabeled blocks render as plain monospace; no false highlights.
  • Math — inline $e^{i\pi}+1=0$ and display $$...$$ equations rendered with KaTeX at page load.
  • Mermaid diagrams ```mermaid fences are rendered as graphics in the browser.
  • OS light/dark theme — follows your system preference automatically. No toggle needed.
  • Print styles — readable when printed or saved as PDF.

Output

The generated HTML lives next to the source file:

docs/plan.md  →  docs/plan.md.html

Each output is a standalone HTML document. Open it in any browser or share it.

Known Limitations

  • LaTeX \\ in matrices — markdown-it consumes \\ as an escaped backslash before KaTeX sees it, so matrix row separators collapse to \. As a workaround, use \cr or \newline instead of \\ inside matrix environments.

License

MIT