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

mermaid-flowchart

v0.0.1

Published

Parse Mermaid flowchart syntax and render as SVG with CSS variable theming

Readme

mermaid-flowchart

⚠️ Experimental: This is a crude, minimal implementation not meant to replace the official Mermaid rendering library. It was created as an experiment with a lightweight solution for markdown preview. This is not production code — use the official Mermaid library for any serious use case.

Parse Mermaid flowchart syntax and render as SVG with CSS variable-based theming.

Installation

npm install mermaid-flowchart

Or install from GitHub:

{
  "dependencies": {
    "mermaid-flowchart": "github:iafan/mermaid-flowchart"
  }
}

Usage

import { renderFlowchart } from 'mermaid-flowchart'

const source = `
flowchart TB
  A[Start] --> B{Decision}
  B -->|Yes| C[Action]
  B -->|No| D[End]
`

const svg = renderFlowchart(source)
document.body.innerHTML = svg

API

renderFlowchart(source: string): string

Parse Mermaid flowchart and render as SVG.

parseFlowchart(source: string): Flowchart

Parse Mermaid flowchart syntax into a Flowchart object.

layoutFlowchart(flowchart: Flowchart): FlowchartLayout

Compute positions for all nodes and edges.

renderFlowchartSvg(flowchart: Flowchart, layout: FlowchartLayout): string

Render a flowchart with layout as SVG.

Supported Syntax

  • Directions: TB, BT, LR, RL
  • Node shapes: [rect], (rounded), {diamond}, ((circle))
  • Edge types: --> (solid), -.-> (dashed)
  • Edge labels: -->|label|
  • Subgraphs: subgraph id["Label"]

CSS Variables

The SVG uses CSS variables for theming with sensible defaults:

| Variable | Default | Description | |----------|---------|-------------| | --flowchart-node-fill | #fff | Node background | | --flowchart-node-stroke | #333 | Node border | | --flowchart-node-label | #333 | Node text | | --flowchart-edge-stroke | #666 | Edge line | | --flowchart-edge-arrow | #666 | Arrow fill | | --flowchart-edge-label | #666 | Edge label text | | --flowchart-edge-label-bg | #fff | Edge label background | | --flowchart-subgraph-fill | #f5f5f5 | Subgraph background | | --flowchart-subgraph-stroke | #999 | Subgraph border | | --flowchart-subgraph-label | #666 | Subgraph label text |

Example: Dark Theme

:root {
  --flowchart-node-fill: #2d2d2d;
  --flowchart-node-stroke: #888;
  --flowchart-node-label: #e0e0e0;
  --flowchart-edge-stroke: #888;
  --flowchart-edge-arrow: #888;
  --flowchart-edge-label: #aaa;
  --flowchart-edge-label-bg: #1e1e1e;
  --flowchart-subgraph-fill: #252525;
  --flowchart-subgraph-stroke: #666;
  --flowchart-subgraph-label: #aaa;
}

License

This is free and unencumbered software released into the public domain (Unlicense).