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

rehype-mermaid-cli

v0.2.1

Published

A Rehype plugin to render Mermaid diagrams in multiple themes using the Mermaid CLI.

Readme

rehype-mermaid-cli

npm version License: MIT

A Rehype plugin to render Mermaid diagrams in multiple themes using the Mermaid CLI.

⚠️ Server-Side Only: Uses Mermaid CLI with Puppeteer for build-time diagram generation.

Features

  • 🎨 Multiple Theme Support - Render diagrams in different themes
  • 🚀 Server-Side Rendering - Build-time processing with Mermaid CLI
  • 🔒 Consistent IDs - Hash-based stable diagram IDs
  • 📦 TypeScript Support - Full type definitions included
  • Caching - Avoids re-rendering identical diagrams

Installation

npm install rehype-mermaid-cli

Requirements: Node.js 18+ (server-side only)

Usage

Basic Usage

import { unified } from 'unified';
import rehypeParse from 'rehype-parse';
import rehypeStringify from 'rehype-stringify';
import { rehypeMermaidCLI } from 'rehype-mermaid-cli';

const result = await unified()
  .use(rehypeParse, { fragment: true })
  .use(rehypeMermaidCLI, { 
    renderThemes: ['default'] 
  })
  .use(rehypeStringify)
  .process(`<pre><code class="language-mermaid">graph TD; A-->B;</code></pre>`);

Multiple Themes

.use(rehypeMermaidCLI, { 
  renderThemes: ['default', 'dark', 'forest'] 
})

Custom SVG Classes

.use(rehypeMermaidCLI, {
  renderThemes: ['default'],
  svgClassNames: ['mx-auto', 'max-w-full'] // Add custom CSS classes
})

Puppeteer Configuration

// Default (works in most environments)
.use(rehypeMermaidCLI, {
  renderThemes: ['default']
})

// For CI/Docker environments
.use(rehypeMermaidCLI, {
  renderThemes: ['default'],
  puppeteerConfig: {
    headless: true,
    args: ['--no-sandbox']
  }
})

TypeScript Usage

import { 
  rehypeMermaidCLI, 
  type RehypeMermaidOptions, 
  type Theme 
} from 'rehype-mermaid-cli';

const options: RehypeMermaidOptions = {
  renderThemes: ['default', 'dark'],
  svgClassNames: ['custom-class']
};

API

Options

renderThemes

  • Type: Theme[]
  • Default: ['default']
  • Description: Array of themes to render

Available themes: 'default', 'base', 'dark', 'forest', 'neutral', 'null'

svgClassNames

  • Type: string[]
  • Default: undefined
  • Description: CSS class names to add to generated SVG elements

puppeteerConfig

  • Type: { headless?: boolean; args?: string[]; }
  • Default: { headless: true, args: [] }
  • Description: Puppeteer configuration for the headless browser
// For CI/Docker environments
puppeteerConfig: {
  headless: true,
  args: ['--no-sandbox', '--disable-setuid-sandbox']
}

// For debugging (show browser)
puppeteerConfig: {
  headless: false
}

Exports

import { 
  rehypeMermaidCLI,      // Main plugin
  type RehypeMermaidOptions, // Options interface
  type Theme,            // Theme type
  defaultOptions         // Default config
} from 'rehype-mermaid-cli';

Output Structure

Input

<pre><code class="language-mermaid">graph TD; A-->B;</code></pre>

Output

<div class="mermaid-wrapper" id="mermaid-536b8b06">
  <div class="mermaid mermaid-default" style="display: block;">
    <svg><!-- SVG content --></svg>
  </div>
</div>

CSS Classes

  • .mermaid-wrapper - Container for all theme versions
  • .mermaid - Individual diagram container
  • .mermaid-{theme} - Theme-specific classes

Theme Switching

CSS Example

.mermaid { display: none; }
.mermaid-default { display: block; }

.dark-mode .mermaid-default { display: none; }
.dark-mode .mermaid-dark { display: block; }

JavaScript Example

function switchTheme(theme) {
  document.querySelectorAll('.mermaid').forEach(el => el.style.display = 'none');
  document.querySelectorAll(`.mermaid-${theme}`).forEach(el => el.style.display = 'block');
}

Development

npm run build    # Build
npm test         # Test
npm run dev      # Watch mode

License

MIT License - see LICENSE file for details.