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

@erkkah/nomnomd

v0.9.0

Published

Markdown with diagrams made easy

Readme

nomnomd = nomnoml + md

nomnomd processes Markdown with included or referenced nomnoml diagrams and produces HTML.

I threw together nomnomd to write documentation for a project where I wanted to keep all docs in the code repo and depend on as few external tools as possible.

Each generated HTML file is self-contained.

Markdown extensions

Embedded nomnoml diagrams

By using the nomnoml fence code, a diagram can be written directly in a code block:

```nomnoml
[A] -> [B]
```

nomnoml files (ending in .noml or .nomnoml) can be referenced as images:

![Class Diagram](./classes.noml)

In both cases, the generated SVG is embedded in the resulting HTML file. The generated HTML adds a CSS-based zoom function, to view detailed diagrams up close.

Markdown file links, listings and includes

You can link to other Markdown files:

[A link][linked.md]

nomnomd overloads the Markdown image syntax to mean "in place" or "here". This allows for creating file lists

![](./docs)

and including files:

![Changelist](changelist.md)

Note that only Markdown (.md) files are listed and included.

List entries can be decorated by entering a pupa template as alt text, like this:

![- {title}](./docs)

The template will use data from the JSON frontmatter of each listed file.

Emojis

All GitHub emojis should work. :white_check_mark:

Themes

sheetleeten theme files can be used to override the default theme:

$ npx @erkkah/nomnomd --theme coffee.css docs.md

Creating themes is easy, basically just setting four colors and two fonts.

Syntax highlighting is provided by highlight.js. The default theme can be changed by specifying a theme name:

$ npx @erkkah/nomnomd --hltheme rainbow docs.md

Working with nomnomd

Usage:
    nomnomd [options] <files...>

    Options:
        [--help]
        [--out DIR]
        [--theme FILE]
        [--hltheme <hljs-theme>]
        [--serve <port>]
        [--recursive|-r]

Simply running nomnomd with a set of Markdown files generates the resulting HTML files in the build output folder.

If recursive mode is turned on, all directories passed nomnomd will be traversed, and all .md files found will be processed.

During development, nomnomd can be run with the --serve flag to launch a little watching, hot-reloading development server on the given port. No output is written in serve mode.