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

@sysid/mmdlint

v0.1.1

Published

Validate Mermaid diagram syntax in Markdown, headless (no browser), via Mermaid's own parser.

Readme

mmdlint

Validate Mermaid diagram syntax inside Markdown — headless, no browser.

mermaid-cli (mmdc) only validates by rendering, which launches Chromium and fails in headless or sandboxed CI. mmdlint calls Mermaid's own parser (mermaid.parse) against an in-process jsdom DOM, so it reports the exact same syntax errors mmdc would — without a browser. It validates only; it never rewrites your diagrams.

Install

npm install -g @sysid/mmdlint

Usage

mmdlint docs/PROJECT.md README.md
ok    docs/PROJECT.md:42 #1 [flowchart LR]
FAIL  docs/PROJECT.md:88 #2 [sequenceDiagram]: Parse error on line 3 ... got 'NEWLINE'

1/2 mermaid blocks valid (1 failed)
  • Each fenced ```mermaid block is reported as ok/FAIL with file:line #blockIndex and the parser message.
  • Exit code 0 if every block parses, 1 if any block fails or a file cannot be read — wire it into CI or a pre-commit hook.

Why this exists

Common Mermaid pitfalls render fine on mermaid.live but fail strict parsers (mmdc, GitHub server-side): a ; is a statement separator (fatal inside sequence messages and node labels), literal \n does not line-break (use <br/>), labels with parens/colons/== must be quoted, and so on. mmdlint catches these in a red-green loop instead of by eyeballing.

API

import { validateMarkdown, extractMermaidBlocks, validateMermaid } from "@sysid/mmdlint";

const results = await validateMarkdown(markdownString);
// [{ index, startLine, code, ok, error? }, ...]

Development

make install   # npm install
make check     # biome lint + tsc typecheck + vitest
make build     # tsc -> dist/
make help      # all targets

License

MIT