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

markdown-exit-mermaid

v2.1.0

Published

A markdown-exit plugin for rendering Mermaid diagrams in a secure iframe with viewer controls

Readme

markdown-exit-mermaid

A markdown-exit plugin that renders Mermaid diagrams with an interactive viewer and control panel.

✨ Features

  • 🎨 Interactive diagram viewer with pan and zoom controls
  • 📋 One-click code copy functionality
  • 🎯 Grid-based navigation panel for precise diagram positioning
  • 🔒 Secure rendering with Mermaid's strict security level
  • 🎭 Customizable theme support
  • 📦 Self-contained or CDN-based asset loading
  • 🚀 Zero configuration required - works out of the box

📦 Installation

# Using bun
bun add markdown-exit-mermaid

# Using npm
npm install markdown-exit-mermaid

# Using yarn
yarn add markdown-exit-mermaid

# Using pnpm
pnpm add markdown-exit-mermaid

🚀 Usage

Basic Usage

import MarkdownExit from 'markdown-exit';
import mermaidPlugin from 'markdown-exit-mermaid';

const md = new MarkdownExit();
md.use(mermaidPlugin);

const markdown = `
\`\`\`mermaid
graph TD
    A[Start] --> B{Is it working?}
    B -->|Yes| C[Great!]
    B -->|No| D[Debug]
    D --> B
\`\`\`
`;

const html = md.render(markdown);

With Options

md.use(mermaidPlugin, {
  theme: 'dark',                    // Mermaid theme (default: 'default')
  js_url: 'https://cdn.custom.com/mermaid.js',  // Custom Mermaid JS URL
  css_url: 'https://cdn.custom.com/style.css',  // External CSS URL
  viewer_js_url: 'https://cdn.custom.com/viewer.js'  // External viewer JS URL
});

⚙️ Options

| Option | Type | Default | Description | | --------------- | -------- | --------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | | theme | string | 'default' | Mermaid theme name. SeeMermaid themes for available options (e.g., 'default', 'dark', 'forest', 'neutral') | | js_url | string | 'https://cdn.jsdelivr.net/npm/mermaid@11/dist/mermaid.min.js' | URL to load Mermaid.js library from | | css_url | string | undefined | Optional external CSS URL. If not provided, inline styles are used | | viewer_js_url | string | undefined | Optional external viewer script URL. If not provided, inline viewer script is used |

🎮 Interactive Controls

The rendered diagrams include an interactive control panel with the following features:

Navigation

  • Arrow buttons (↑ ↓ ← →): Pan the diagram in all directions
  • Reset button (⟳): Reset view to original position and scale

Zoom

  • Zoom In (+): Increase diagram scale up to 5x
  • Zoom Out (−): Decrease diagram scale down to 0.2x

Toolbar

  • Copy button (📋): Copy the original Mermaid code to🔧 Advanced Configuration

Using Custom CDN

md.use(mermaidPlugin, {
  js_url: 'https://unpkg.com/mermaid@11/dist/mermaid.min.js'
});

External Assets for Better Caching

If you're rendering multiple pages, you can host the viewer script and styles externally to improve caching:

md.use(mermaidPlugin, {
  css_url: 'https://your-cdn.com/mermaid-viewer.css',
  viewer_js_url: 'https://your-cdn.com/mermaid-viewer.js'
});

Dark Theme Example

md.use(mermaidPlugin, {
  theme: 'dark'
});

🏗️ How It Works

  1. Code Block Detection: The plugin intercepts fenced code blocks with mermaid language
  2. HTML Generation: Creates a container with control panel, toolbar, and viewer area
  3. Mermaid Loading: Dynamically loads Mermaid.js library (cached after first load)
  4. Diagram Rendering: Uses Mermaid's render() API to convert code to SVG
  5. Interactive Controls: Attaches event listeners for pan, zoom, and copy functionality

📄 License

MIT

👤 Author

GnixAij