mermaid

Generation of diagrams like flowcharts or sequence diagrams from text in a similar manner as markdown

https://github.com/mermaid-js/mermaid

Science Score: 54.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
    14 of 685 committers (2.0%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (12.3%) to scientific vocabulary

Keywords

diagrams diagrams-as-code documentation flowchart javascript mindmap typescript uml-diagrams

Keywords from Contributors

argument-parser embedded closember cryptocurrencies distributed wx tk gtk document qt
Last synced: 4 months ago · JSON representation ·

Repository

Generation of diagrams like flowcharts or sequence diagrams from text in a similar manner as markdown

Basic Info
  • Host: GitHub
  • Owner: mermaid-js
  • License: mit
  • Language: TypeScript
  • Default Branch: develop
  • Homepage: https://mermaid.js.org
  • Size: 243 MB
Statistics
  • Stars: 82,566
  • Watchers: 651
  • Forks: 7,984
  • Open Issues: 1,425
  • Releases: 168
Topics
diagrams diagrams-as-code documentation flowchart javascript mindmap typescript uml-diagrams
Created about 11 years ago · Last pushed 4 months ago
Metadata Files
Readme Changelog Contributing Funding License Code of conduct Citation

README.md

Mermaid

Generate diagrams from markdown-like text.

Live Editor!

📖 Documentation | 🚀 Getting Started | 🌐 CDN | 🙌 Join Us

简体中文

Try Live Editor previews of future releases: Develop | Next



NPM Build CI Status npm minified gzipped bundle size Coverage Status CDN Status NPM Downloads Join our Discord! Twitter Follow Covered by Argos Visual Testing OpenSSF Scorecard

:trophy: Mermaid was nominated and won the JS Open Source Awards (2019) in the category "The most exciting use of technology"!!!

Thanks to all involved, people committing pull requests, people answering questions! 🙏

Banner for "The Official Guide to Mermaid.js" book

Table of content

Expand contents - [About](#about) - [Examples](#examples) - [Release](#release) - [Related projects](#related-projects) - [Contributors](#contributors---) - [Security and safe diagrams](#security-and-safe-diagrams) - [Reporting vulnerabilities](#reporting-vulnerabilities) - [Appreciation](#appreciation)

About

Mermaid is a JavaScript-based diagramming and charting tool that uses Markdown-inspired text definitions and a renderer to create and modify complex diagrams. The main purpose of Mermaid is to help documentation catch up with development.

Doc-Rot is a Catch-22 that Mermaid helps to solve.

Diagramming and documentation costs precious developer time and gets outdated quickly. But not having diagrams or docs ruins productivity and hurts organizational learning.
Mermaid addresses this problem by enabling users to create easily modifiable diagrams. It can also be made part of production scripts (and other pieces of code).

Mermaid allows even non-programmers to easily create detailed diagrams through the Mermaid Live Editor.
For video tutorials, visit our Tutorials page. Use Mermaid with your favorite applications, check out the list of Integrations and Usages of Mermaid.

You can also use Mermaid within GitHub as well many of your other favorite applications—check out the list of Integrations and Usages of Mermaid.

For a more detailed introduction to Mermaid and some of its more basic uses, look to the Beginner's Guide, Usage and Tutorials.

Our PR Visual Regression Testing is powered by Argos with their generous Open Source plan. It makes the process of reviewing PRs with visual changes a breeze.

Covered by Argos Visual Testing

In our release process we rely heavily on visual regression tests using applitools. Applitools is a great service which has been easy to use and integrate with our tests.

Examples

The following are some examples of the diagrams, charts and graphs that can be made using Mermaid. Click here to jump into the text syntax.

Flowchart [docs - live editor]

``` flowchart LR

A[Hard] -->|Text| B(Round) B --> C{Decision} C -->|One| D[Result 1] C -->|Two| E[Result 2] ```

```mermaid flowchart LR

A[Hard] -->|Text| B(Round) B --> C{Decision} C -->|One| D[Result 1] C -->|Two| E[Result 2] ```

Sequence diagram [docs - live editor]

sequenceDiagram Alice->>John: Hello John, how are you? loop HealthCheck John->>John: Fight against hypochondria end Note right of John: Rational thoughts! John-->>Alice: Great! John->>Bob: How about you? Bob-->>John: Jolly good!

mermaid sequenceDiagram Alice->>John: Hello John, how are you? loop HealthCheck John->>John: Fight against hypochondria end Note right of John: Rational thoughts! John-->>Alice: Great! John->>Bob: How about you? Bob-->>John: Jolly good!

Gantt chart [docs - live editor]

gantt section Section Completed :done, des1, 2014-01-06,2014-01-08 Active :active, des2, 2014-01-07, 3d Parallel 1 : des3, after des1, 1d Parallel 2 : des4, after des1, 1d Parallel 3 : des5, after des3, 1d Parallel 4 : des6, after des4, 1d

mermaid gantt section Section Completed :done, des1, 2014-01-06,2014-01-08 Active :active, des2, 2014-01-07, 3d Parallel 1 : des3, after des1, 1d Parallel 2 : des4, after des1, 1d Parallel 3 : des5, after des3, 1d Parallel 4 : des6, after des4, 1d

Class diagram [docs - live editor]

``` classDiagram Class01 <|-- AveryLongClass : Cool <> Class01 Class09 --> C2 : Where am I? Class09 --* C3 Class09 --|> Class07 Class07 : equals() Class07 : Object[] elementData Class01 : size() Class01 : int chimp Class01 : int gorilla class Class10 { <> int id size() }

```

```mermaid classDiagram Class01 <|-- AveryLongClass : Cool <> Class01 Class09 --> C2 : Where am I? Class09 --* C3 Class09 --|> Class07 Class07 : equals() Class07 : Object[] elementData Class01 : size() Class01 : int chimp Class01 : int gorilla class Class10 { <> int id size() }

```

State diagram [docs - live editor]

stateDiagram-v2 [*] --> Still Still --> [*] Still --> Moving Moving --> Still Moving --> Crash Crash --> [*]

mermaid stateDiagram-v2 [*] --> Still Still --> [*] Still --> Moving Moving --> Still Moving --> Crash Crash --> [*]

Pie chart [docs - live editor]

pie "Dogs" : 386 "Cats" : 85.9 "Rats" : 15

mermaid pie "Dogs" : 386 "Cats" : 85.9 "Rats" : 15

Git graph [experimental - live editor]

gitGraph commit commit branch develop checkout develop commit commit checkout main merge develop commit commit

mermaid gitGraph commit commit branch develop checkout develop commit commit checkout main merge develop commit commit

Bar chart (using gantt chart) [docs - live editor]

``` gantt title Git Issues - days since last update dateFormat X axisFormat %s

section Issue19062
71   : 0, 71
section Issue19401
36   : 0, 36
section Issue193
34   : 0, 34
section Issue7441
9    : 0, 9
section Issue1300
5    : 0, 5

```

```mermaid gantt title Git Issues - days since last update dateFormat X axisFormat %s

section Issue19062
71   : 0, 71
section Issue19401
36   : 0, 36
section Issue193
34   : 0, 34
section Issue7441
9    : 0, 9
section Issue1300
5    : 0, 5

```

User Journey diagram [docs - live editor]

journey title My working day section Go to work Make tea: 5: Me Go upstairs: 3: Me Do work: 1: Me, Cat section Go home Go downstairs: 5: Me Sit down: 3: Me

mermaid journey title My working day section Go to work Make tea: 5: Me Go upstairs: 3: Me Do work: 1: Me, Cat section Go home Go downstairs: 5: Me Sit down: 3: Me

C4 diagram [docs]

``` C4Context title System Context diagram for Internet Banking System

Person(customerA, "Banking Customer A", "A customer of the bank, with personal bank accounts.") Person(customerB, "Banking Customer B") Person_Ext(customerC, "Banking Customer C") System(SystemAA, "Internet Banking System", "Allows customers to view information about their bank accounts, and make payments.")

Person(customerD, "Banking Customer D", "A customer of the bank,
with personal bank accounts.")

Enterprise_Boundary(b1, "BankBoundary") {

SystemDb_Ext(SystemE, "Mainframe Banking System", "Stores all of the core banking information about customers, accounts, transactions, etc.")

System_Boundary(b2, "BankBoundary2") { System(SystemA, "Banking System A") System(SystemB, "Banking System B", "A system of the bank, with personal bank accounts.") }

System_Ext(SystemC, "E-mail system", "The internal Microsoft Exchange e-mail system.") SystemDb(SystemD, "Banking System D Database", "A system of the bank, with personal bank accounts.")

Boundary(b3, "BankBoundary3", "boundary") { SystemQueue(SystemF, "Banking System F Queue", "A system of the bank, with personal bank accounts.") SystemQueue_Ext(SystemG, "Banking System G Queue", "A system of the bank, with personal bank accounts.") } }

BiRel(customerA, SystemAA, "Uses") BiRel(SystemAA, SystemE, "Uses") Rel(SystemAA, SystemC, "Sends e-mails", "SMTP") Rel(SystemC, customerA, "Sends e-mails to") ```

```mermaid C4Context title System Context diagram for Internet Banking System

Person(customerA, "Banking Customer A", "A customer of the bank, with personal bank accounts.") Person(customerB, "Banking Customer B") Person_Ext(customerC, "Banking Customer C") System(SystemAA, "Internet Banking System", "Allows customers to view information about their bank accounts, and make payments.")

Person(customerD, "Banking Customer D", "A customer of the bank,
with personal bank accounts.")

Enterprise_Boundary(b1, "BankBoundary") {

SystemDb_Ext(SystemE, "Mainframe Banking System", "Stores all of the core banking information about customers, accounts, transactions, etc.")

System_Boundary(b2, "BankBoundary2") { System(SystemA, "Banking System A") System(SystemB, "Banking System B", "A system of the bank, with personal bank accounts.") }

System_Ext(SystemC, "E-mail system", "The internal Microsoft Exchange e-mail system.") SystemDb(SystemD, "Banking System D Database", "A system of the bank, with personal bank accounts.")

Boundary(b3, "BankBoundary3", "boundary") { SystemQueue(SystemF, "Banking System F Queue", "A system of the bank, with personal bank accounts.") SystemQueue_Ext(SystemG, "Banking System G Queue", "A system of the bank, with personal bank accounts.") } }

BiRel(customerA, SystemAA, "Uses") BiRel(SystemAA, SystemE, "Uses") Rel(SystemAA, SystemC, "Sends e-mails", "SMTP") Rel(SystemC, customerA, "Sends e-mails to") ```

Release

For those who have the permission to do so:

Update version number in package.json.

sh npm publish

The above command generates files into the dist folder and publishes them to https://www.npmjs.com.

Related projects

Contributors Good first issue Contributors Commits

Mermaid is a growing community and is always accepting new contributors. There's a lot of different ways to help out and we're always looking for extra hands! Look at this issue if you want to know where to start helping out.

Detailed information about how to contribute can be found in the contribution guide

Security and safe diagrams

For public sites, it can be precarious to retrieve text from users on the internet, storing that content for presentation in a browser at a later stage. The reason is that the user content can contain embedded malicious scripts that will run when the data is presented. For Mermaid this is a risk, specially as mermaid diagrams contain many characters that are used in html which makes the standard sanitation unusable as it also breaks the diagrams. We still make an effort to sanitize the incoming code and keep refining the process but it is hard to guarantee that there are no loop holes.

As an extra level of security for sites with external users we are happy to introduce a new security level in which the diagram is rendered in a sandboxed iframe preventing javascript in the code from being executed. This is a great step forward for better security.

Unfortunately you cannot have a cake and eat it at the same time which in this case means that some of the interactive functionality gets blocked along with the possible malicious code.

Reporting vulnerabilities

To report a vulnerability, please e-mail security@mermaid.live with a description of the issue, the steps you took to create the issue, affected versions, and if known, mitigations for the issue.

Appreciation

A quick note from Knut Sveidqvist:

Many thanks to the d3 and dagre-d3 projects for providing the graphical layout and drawing libraries!

Thanks also to the js-sequence-diagram project for usage of the grammar for the sequence diagrams. Thanks to Jessica Peter for inspiration and starting point for gantt rendering.

Thank you to Tyler Long who has been a collaborator since April 2017.

Thank you to the ever-growing list of contributors that brought the project this far!


Mermaid was created by Knut Sveidqvist for easier documentation.

Owner

  • Name: mermaid-js
  • Login: mermaid-js
  • Kind: organization

Citation (CITATION.cff)

cff-version: 1.2.0
title: 'Mermaid: Generate diagrams from markdown-like text'
message: >-
  If you use this software, please cite it using the metadata from this file.
type: software
authors:
  - family-names: Sveidqvist
    given-names: Knut
  - name: 'Contributors to Mermaid'
repository-code: 'https://github.com/mermaid-js/mermaid'
date-released: 2014-12-02
url: 'https://mermaid.js.org/'
abstract: >-
  JavaScript based diagramming and charting tool that renders Markdown-inspired
  text definitions to create and modify diagrams dynamically.
license: MIT

Committers

Last synced: 6 months ago

All Time
  • Total Commits: 9,406
  • Total Committers: 685
  • Avg Commits per committer: 13.731
  • Development Distribution Score (DDS): 0.825
Past Year
  • Commits: 1,542
  • Committers: 84
  • Avg Commits per committer: 18.357
  • Development Distribution Score (DDS): 0.819
Top Committers
Name Email Commits
Sidharth Vinod s****6@g****m 1,647
Knut Sveidqvist k****v@s****m 1,606
dependabot[bot] 4****] 453
Neil Cuzon 5****n 430
Tyler Long t****g@g****m 321
Ashish Jain a****2@g****m 302
Alois Klink a****s@a****m 215
Reda Al Sulais u****a@g****m 204
renovate[bot] 2****] 188
Ashley Engelund (weedySeaDragon @ github) a****d@g****m 166
saurabhg772244 s****h@m****m 158
Nikolay Rozhkov n****e@g****m 155
Matthieu MOREL m****5 132
Steph 3****e 128
yari-dewalt y****t@g****m 108
autofix-ci[bot] 1****] 107
NicolasNewman n****1@g****m 106
Josh Soref 2****f 105
Justin Greywolf j****f 96
Christian Klemm g****t@k****e 94
omkarht o****r@m****m 80
Yash Singh s****5@g****m 74
Ibrahim Wassouf i****7@d****a 72
Marc Faber f****r@g****e 56
Subhash Halder h****h@g****m 53
Raghu Rajagopalan r****n@g****m 47
Sean Killeen S****n@g****m 43
chris moran c****s@c****m 41
Shahir Ahmed a****s@d****u 40
erelling 5****g 38
and 655 more...

Issues and Pull Requests

Last synced: 4 months ago

All Time
  • Total issues: 1,455
  • Total pull requests: 1,777
  • Average time to close issues: 11 months
  • Average time to close pull requests: 24 days
  • Total issue authors: 1,154
  • Total pull request authors: 360
  • Average comments per issue: 3.37
  • Average comments per pull request: 3.88
  • Merged pull requests: 1,087
  • Bot issues: 2
  • Bot pull requests: 341
Past Year
  • Issues: 439
  • Pull requests: 806
  • Average time to close issues: 16 days
  • Average time to close pull requests: 13 days
  • Issue authors: 354
  • Pull request authors: 166
  • Average comments per issue: 0.32
  • Average comments per pull request: 3.97
  • Merged pull requests: 409
  • Bot issues: 0
  • Bot pull requests: 167
Top Authors
Issue Authors
  • knsv (32)
  • sidharthv96 (22)
  • shubham-mermaid (11)
  • HariSekhon (9)
  • nirname (8)
  • nourhenta (8)
  • Mister-Hope (7)
  • wouterbeek (6)
  • nour0205 (6)
  • ad1992 (6)
  • jsoref (6)
  • RokeJulianLockhart (6)
  • ghost (5)
  • oryx-it (5)
  • sjackson0109 (4)
Pull Request Authors
  • sidharthv96 (261)
  • renovate[bot] (247)
  • github-actions[bot] (87)
  • huynhicode (83)
  • aloisklink (42)
  • knsv (38)
  • saurabhg772244 (28)
  • darshanr0107 (26)
  • nour0205 (25)
  • Yokozuna59 (23)
  • shubham-mermaid (23)
  • yari-dewalt (21)
  • ashishjain0512 (20)
  • FutzMonitor (19)
  • jgreywolf (17)
Top Labels
Issue Labels
Status: Triage (1,052) Type: Bug / Error (802) Type: Enhancement (409) Status: Approved (184) Contributor needed (129) Type: New Diagram (93) Graph: Flow (90) Good first issue! (76) Area: Development (59) Graph: Class (56) Type: Other (48) Internals: Parser (35) Close after 30 days (35) Graph: Sequence (33) Status: Awaiting PR (28) Status: Awaiting Reply (24) Graph: Gantt (23) Type: Question (20) Internals: Renderer (18) Graph: Entity Relationship (18) Graph: State (17) Status: Pending (17) Status: In progress (14) Area: Documentation (13) Type: New Shape (13) fosshack (10) roadmap (9) Graph: Git (9) Graph: Pie (8) Graph: Mindmap (7)
Pull Request Labels
Type: Bug / Error (145) Type: Enhancement (106) Area: Documentation (91) Type: Other (55) Sponsored by MermaidChart (53) Area: DevOps (18) Area: Development (17) feature (17) Skip changelog (14) Graph: Flow (12) Breaking Change (10) spam (10) Graph: Gantt (9) fix (9) Graph: Class (8) dependencies (8) Type: New Diagram (6) Graph: Sequence (6) Discussion (6) Internals: Renderer (5) Graph: Entity Relationship (5) Internals: Parser (5) Status: In progress (5) Graph: Git (5) Status: Awaiting Reply (4) Graph: Timeline (4) chore (4) Close after 30 days (3) Graph: Block (2) codex (2)

Packages

  • Total packages: 29
  • Total downloads:
    • npm 10,418,648 last-month
  • Total docker downloads: 1,708,312,527
  • Total dependent packages: 576
    (may contain duplicates)
  • Total dependent repositories: 13,551
    (may contain duplicates)
  • Total versions: 519
  • Total maintainers: 26
  • Total advisories: 7
npmjs.org: mermaid

Markdown-ish syntax for generating flowcharts, mindmaps, sequence diagrams, class diagrams, gantt charts, git graphs and more.

  • Versions: 243
  • Dependent Packages: 554
  • Dependent Repositories: 13,441
  • Downloads: 5,839,200 Last month
  • Docker Downloads: 1,708,311,770
Rankings
Stargazers count: 0.1%
Docker downloads count: 0.1%
Dependent packages count: 0.1%
Downloads: 0.2%
Average: 0.2%
Dependent repos count: 0.2%
Forks count: 0.5%
Last synced: 4 months ago
npmjs.org: @mermaid-js/mermaid-mindmap

Mindmap diagram module for MermaidJS.

  • Versions: 11
  • Dependent Packages: 13
  • Dependent Repositories: 56
  • Downloads: 188,978 Last month
  • Docker Downloads: 757
Rankings
Stargazers count: 0.1%
Forks count: 0.5%
Average: 1.4%
Downloads: 1.4%
Docker downloads count: 1.6%
Dependent repos count: 1.9%
Dependent packages count: 2.7%
Last synced: 4 months ago
proxy.golang.org: github.com/mermaid-js/mermaid
  • Versions: 33
  • Dependent Packages: 2
  • Dependent Repositories: 5
Rankings
Stargazers count: 0.0%
Forks count: 0.1%
Average: 1.5%
Dependent repos count: 2.3%
Dependent packages count: 3.7%
Last synced: 4 months ago
npmjs.org: @mermaid-js/mermaid-zenuml

MermaidJS plugin for ZenUML integration

  • Versions: 7
  • Dependent Packages: 2
  • Dependent Repositories: 1
  • Downloads: 318,253 Last month
Rankings
Stargazers count: 0.1%
Forks count: 0.5%
Average: 5.2%
Downloads: 6.2%
Dependent packages count: 8.8%
Dependent repos count: 10.3%
Last synced: 4 months ago
repo1.maven.org: org.webjars.npm:mermaid

WebJar for mermaid

  • Versions: 29
  • Dependent Packages: 3
  • Dependent Repositories: 47
Rankings
Stargazers count: 0.4%
Forks count: 1.4%
Dependent repos count: 3.2%
Average: 5.6%
Dependent packages count: 17.6%
Last synced: 4 months ago
npmjs.org: @mermaid-js/parser

MermaidJS parser

  • Versions: 12
  • Dependent Packages: 1
  • Dependent Repositories: 1
  • Downloads: 3,970,846 Last month
Rankings
Stargazers count: 0.1%
Forks count: 0.5%
Downloads: 5.7%
Average: 7.5%
Dependent repos count: 10.3%
Dependent packages count: 20.9%
Last synced: 4 months ago
npmjs.org: fork-mermaid

Markdown-ish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.

  • Versions: 8
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 126 Last month
Rankings
Stargazers count: 0.1%
Forks count: 0.5%
Average: 12.2%
Downloads: 14.8%
Dependent repos count: 18.8%
Dependent packages count: 27.0%
Maintainers (1)
Last synced: 4 months ago
npmjs.org: @deboxsoft/mermaid

Markdown-ish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.

  • Versions: 5
  • Dependent Packages: 1
  • Dependent Repositories: 0
  • Downloads: 4 Last month
Rankings
Stargazers count: 0.1%
Forks count: 0.7%
Downloads: 8.4%
Average: 13.5%
Dependent repos count: 25.3%
Dependent packages count: 32.9%
Maintainers (1)
Last synced: 4 months ago
npmjs.org: @mermaid-js/layout-tidy-tree

Tidy-tree layout engine for mermaid

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Stargazers count: 0.1%
Forks count: 0.3%
Average: 14.7%
Dependent repos count: 23.9%
Dependent packages count: 34.5%
Last synced: 4 months ago
npmjs.org: @ted-marozzi/mermaid

Markdown-ish syntax for generating flowcharts, mindmaps, sequence diagrams, class diagrams, gantt charts, git graphs and more.

  • Versions: 93
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 219 Last month
Rankings
Stargazers count: 0.1%
Forks count: 0.5%
Average: 22.2%
Dependent repos count: 36.2%
Dependent packages count: 51.9%
Maintainers (1)
Last synced: 4 months ago
npmjs.org: mermaid-eden

Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0 Last month
Rankings
Stargazers count: 0.1%
Forks count: 0.5%
Average: 22.6%
Dependent repos count: 37.1%
Dependent packages count: 52.6%
Maintainers (1)
Last synced: 4 months ago
npmjs.org: mmd-ontology-ttl-monorepo

Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Stargazers count: 0.1%
Forks count: 0.5%
Average: 23.2%
Dependent repos count: 37.2%
Dependent packages count: 55.1%
Maintainers (1)
Last synced: 4 months ago
npmjs.org: @mermaid-js/examples

Mermaid examples package

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 925 Last month
Rankings
Downloads: 20.1%
Dependent repos count: 24.3%
Average: 26.5%
Dependent packages count: 35.1%
Last synced: 4 months ago
npmjs.org: mermaid-patch-for-node

Markdown-ish syntax for generating flowcharts, mindmaps, sequence diagrams, class diagrams, gantt charts, git graphs and more.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 68 Last month
Rankings
Dependent repos count: 24.0%
Average: 29.3%
Dependent packages count: 34.7%
Maintainers (1)
Last synced: 4 months ago
npmjs.org: @mermaid-js/tiny

Tiny version of mermaid

  • Versions: 11
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 216 Last month
Rankings
Dependent repos count: 24.8%
Average: 30.3%
Dependent packages count: 35.8%
Last synced: 4 months ago
npmjs.org: mermaid-es6

Markdown-ish syntax for generating flowcharts, mindmaps, sequence diagrams, class diagrams, gantt charts, git graphs and more.

  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 11 Last month
Rankings
Dependent repos count: 24.9%
Average: 30.4%
Dependent packages count: 35.9%
Maintainers (1)
Last synced: 4 months ago
npmjs.org: @jeswr/mermaid

Markdown-ish syntax for generating flowcharts, mindmaps, sequence diagrams, class diagrams, gantt charts, git graphs and more.

  • Versions: 5
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 39 Last month
Rankings
Dependent repos count: 24.9%
Average: 30.5%
Dependent packages count: 36.1%
Maintainers (1)
Last synced: 4 months ago
npmjs.org: @ted-marozzi/layout-elk

ELK layout engine for mermaid

  • Versions: 8
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5 Last month
Rankings
Dependent repos count: 25.5%
Average: 31.2%
Dependent packages count: 36.9%
Maintainers (1)
Last synced: 4 months ago
npmjs.org: @mermaid-js/layout-elk

ELK layout engine for mermaid

  • Versions: 11
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 99,152 Last month
Rankings
Dependent repos count: 25.9%
Average: 31.8%
Dependent packages count: 37.7%
Last synced: 4 months ago
npmjs.org: better-mermaid

Markdown-ish syntax for generating flowcharts, mindmaps, sequence diagrams, class diagrams, gantt charts, git graphs and more.

  • Versions: 5
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 405 Last month
Rankings
Dependent repos count: 28.7%
Average: 35.2%
Dependent packages count: 41.7%
Maintainers (1)
Last synced: 4 months ago
repo1.maven.org: org.webjars.bower:mermaid

WebJar for mermaid

  • Versions: 4
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 32.0%
Average: 40.4%
Dependent packages count: 48.9%
Last synced: 4 months ago
npmjs.org: @eten-lab/mermaid-monorepo

Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2 Last month
Rankings
Dependent repos count: 33.4%
Average: 40.6%
Dependent packages count: 47.8%
Last synced: 4 months ago
npmjs.org: @eten-lab/mermaid

Markdown-ish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.

  • Versions: 7
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6 Last month
Rankings
Dependent repos count: 33.4%
Average: 40.6%
Dependent packages count: 47.8%
Last synced: 4 months ago
npmjs.org: mermaid-elk

Markdown-ish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 34 Last month
Rankings
Dependent repos count: 34.1%
Average: 41.3%
Dependent packages count: 48.5%
Maintainers (1)
Last synced: 4 months ago
npmjs.org: @diegosogari/mermaid

Markdown-ish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.

  • Versions: 10
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 81 Last month
Rankings
Dependent repos count: 36.0%
Average: 43.8%
Dependent packages count: 51.7%
Maintainers (1)
Last synced: 4 months ago
npmjs.org: @dwelle/mermaid

Markdown-ish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2 Last month
Rankings
Dependent repos count: 36.2%
Average: 44.0%
Dependent packages count: 51.9%
Maintainers (1)
Last synced: 4 months ago
npmjs.org: @mermaid-js/flowchart-elk

Flowchart plugin for mermaid with ELK layout

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 7 Last month
Rankings
Dependent repos count: 36.4%
Average: 44.3%
Dependent packages count: 52.2%
Last synced: 4 months ago
npmjs.org: @sautejfi/mermaid

Markdown-ish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0 Last month
Rankings
Dependent repos count: 37.5%
Average: 46.2%
Dependent packages count: 54.9%
Maintainers (1)
Last synced: 4 months ago
npmjs.org: @sautejfi/mermaid-monorepo

Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 69 Last month
Maintainers (1)
Last synced: 4 months ago

Dependencies

.github/workflows/build-docs.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • pnpm/action-setup v2 composite
.github/workflows/build.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • actions/upload-artifact v3 composite
  • pnpm/action-setup v2 composite
.github/workflows/check-readme-in-sync.yml actions
  • actions/checkout v3 composite
.github/workflows/checks.yml actions
  • actions/checkout v3 composite
  • testomatio/check-tests stable composite
.github/workflows/codeql.yml actions
  • actions/checkout v3 composite
  • github/codeql-action/analyze v2 composite
  • github/codeql-action/autobuild v2 composite
  • github/codeql-action/init v2 composite
.github/workflows/dependency-review.yml actions
  • actions/checkout v3 composite
  • actions/dependency-review-action v3 composite
.github/workflows/e2e-applitools.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • cypress-io/github-action v4 composite
  • pnpm/action-setup v2 composite
.github/workflows/e2e.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • actions/upload-artifact v3 composite
  • codecov/codecov-action v3 composite
  • cypress-io/github-action v4 composite
  • pnpm/action-setup v2 composite
.github/workflows/issue-triage.yml actions
  • andymckay/labeler 1.0.4 composite
.github/workflows/link-checker.yml actions
  • actions/cache v3 composite
  • actions/checkout v3 composite
  • lycheeverse/lychee-action v1.8.0 composite
.github/workflows/lint.yml actions
  • EndBug/add-and-commit v9 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • pnpm/action-setup v2 composite
.github/workflows/pr-labeler-config-validator.yml actions
  • Yash-Singh1/pr-labeler-config-validator releases/v0.0.3 composite
  • actions/checkout v3 composite
.github/workflows/pr-labeler.yml actions
  • TimonVS/pr-labeler-action v4 composite
.github/workflows/publish-docs.yml actions
  • actions/checkout v3 composite
  • actions/configure-pages v3 composite
  • actions/deploy-pages v2 composite
  • actions/setup-node v3 composite
  • actions/upload-pages-artifact v1 composite
  • pnpm/action-setup v2 composite
.github/workflows/release-draft.yml actions
  • toolmantim/release-drafter v5 composite
.github/workflows/release-preview-publish.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • pnpm/action-setup v2 composite
.github/workflows/release-publish.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • fregante/setup-git-user v2 composite
  • pnpm/action-setup v2 composite
.github/workflows/test.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • codecov/codecov-action v3 composite
  • pnpm/action-setup v2 composite
.github/workflows/unlock-reopened-issues.yml actions
  • Dunning-Kruger/unlock-issues v1 composite
.github/workflows/update-browserlist.yml actions
  • EndBug/add-and-commit v9 composite
  • actions/checkout v3 composite
docker-compose.yml docker
  • cypress/included 12.17.4
  • node 18.18.0-alpine3.18
package.json npm
  • @applitools/eyes-cypress ^3.33.1 development
  • @commitlint/cli ^17.6.1 development
  • @commitlint/config-conventional ^17.6.1 development
  • @cspell/eslint-plugin ^6.31.1 development
  • @cypress/code-coverage ^3.10.7 development
  • @rollup/plugin-typescript ^11.1.1 development
  • @types/cors ^2.8.13 development
  • @types/eslint ^8.37.0 development
  • @types/express ^4.17.17 development
  • @types/js-yaml ^4.0.5 development
  • @types/jsdom ^21.1.1 development
  • @types/lodash ^4.14.194 development
  • @types/mdast ^3.0.11 development
  • @types/node ^18.16.0 development
  • @types/prettier ^2.7.2 development
  • @types/rollup-plugin-visualizer ^4.2.1 development
  • @typescript-eslint/eslint-plugin ^6.7.2 development
  • @typescript-eslint/parser ^6.7.2 development
  • @vitest/coverage-v8 ^0.34.0 development
  • @vitest/spy ^0.34.0 development
  • @vitest/ui ^0.34.0 development
  • ajv ^8.12.0 development
  • concurrently ^8.0.1 development
  • cors ^2.8.5 development
  • cypress ^12.10.0 development
  • cypress-image-snapshot ^4.0.1 development
  • esbuild ^0.19.0 development
  • eslint ^8.39.0 development
  • eslint-config-prettier ^8.8.0 development
  • eslint-plugin-cypress ^2.13.2 development
  • eslint-plugin-html ^7.1.0 development
  • eslint-plugin-jest ^27.2.1 development
  • eslint-plugin-jsdoc ^46.0.0 development
  • eslint-plugin-json ^3.1.0 development
  • eslint-plugin-lodash ^7.4.0 development
  • eslint-plugin-markdown ^3.0.0 development
  • eslint-plugin-no-only-tests ^3.1.0 development
  • eslint-plugin-tsdoc ^0.2.17 development
  • eslint-plugin-unicorn ^47.0.0 development
  • express ^4.18.2 development
  • globby ^13.1.4 development
  • husky ^8.0.3 development
  • jest ^29.5.0 development
  • jison ^0.4.18 development
  • js-yaml ^4.1.0 development
  • jsdom ^22.0.0 development
  • lint-staged ^13.2.1 development
  • nyc ^15.1.0 development
  • path-browserify ^1.0.1 development
  • pnpm ^8.6.8 development
  • prettier ^2.8.8 development
  • prettier-plugin-jsdoc ^0.4.2 development
  • rimraf ^5.0.0 development
  • rollup-plugin-visualizer ^5.9.2 development
  • start-server-and-test ^2.0.0 development
  • ts-node ^10.9.1 development
  • typescript ^5.1.3 development
  • vite ^4.3.9 development
  • vite-plugin-istanbul ^4.1.0 development
  • vitest ^0.34.0 development
packages/mermaid/package.json npm
  • @adobe/jsonschema2md ^7.1.4 development
  • @types/cytoscape ^3.19.9 development
  • @types/d3 ^7.4.0 development
  • @types/d3-sankey ^0.12.1 development
  • @types/d3-scale ^4.0.3 development
  • @types/d3-selection ^3.0.5 development
  • @types/d3-shape ^3.1.1 development
  • @types/dompurify ^3.0.2 development
  • @types/jsdom ^21.1.1 development
  • @types/lodash-es ^4.17.7 development
  • @types/micromatch ^4.0.2 development
  • @types/prettier ^2.7.2 development
  • @types/stylis ^4.0.2 development
  • @types/uuid ^9.0.1 development
  • @typescript-eslint/eslint-plugin ^5.59.0 development
  • @typescript-eslint/parser ^5.59.0 development
  • ajv ^8.11.2 development
  • chokidar ^3.5.3 development
  • concurrently ^8.0.1 development
  • cpy-cli ^4.2.0 development
  • cspell ^6.31.1 development
  • csstree-validator ^3.0.0 development
  • globby ^13.1.4 development
  • jison ^0.4.18 development
  • js-base64 ^3.7.5 development
  • jsdom ^22.0.0 development
  • json-schema-to-typescript ^11.0.3 development
  • micromatch ^4.0.5 development
  • path-browserify ^1.0.1 development
  • prettier ^2.8.8 development
  • remark ^14.0.2 development
  • remark-frontmatter ^4.0.1 development
  • remark-gfm ^3.0.1 development
  • rimraf ^5.0.0 development
  • start-server-and-test ^2.0.0 development
  • type-fest ^4.1.0 development
  • typedoc ^0.25.0 development
  • typedoc-plugin-markdown ^3.15.2 development
  • typescript ^5.0.4 development
  • unist-util-flatmap ^1.0.0 development
  • unist-util-visit ^4.1.2 development
  • vitepress ^1.0.0-alpha.72 development
  • vitepress-plugin-search ^1.0.4-alpha.20 development
  • @braintree/sanitize-url ^6.0.1
  • @types/d3-scale ^4.0.3
  • @types/d3-scale-chromatic ^3.0.0
  • cytoscape ^3.23.0
  • cytoscape-cose-bilkent ^4.1.0
  • cytoscape-fcose ^2.1.0
  • d3 ^7.4.0
  • d3-sankey ^0.12.3
  • dagre-d3-es 7.0.10
  • dayjs ^1.11.7
  • dompurify ^3.0.5
  • elkjs ^0.8.2
  • khroma ^2.0.0
  • lodash-es ^4.17.21
  • mdast-util-from-markdown ^1.3.0
  • non-layered-tidy-tree-layout ^2.0.2
  • stylis ^4.1.3
  • ts-dedent ^2.2.0
  • uuid ^9.0.0
  • web-worker ^1.2.0
packages/mermaid/src/docs/package.json npm
  • @iconify-json/carbon ^1.1.16 development
  • @unocss/reset ^0.56.0 development
  • @vite-pwa/vitepress ^0.2.0 development
  • @vitejs/plugin-vue ^4.2.1 development
  • fast-glob ^3.2.12 development
  • https-localhost ^4.7.1 development
  • pathe ^1.1.0 development
  • unocss ^0.56.0 development
  • unplugin-vue-components ^0.25.0 development
  • vite ^4.3.9 development
  • vite-plugin-pwa ^0.16.0 development
  • vitepress 1.0.0-rc.20 development
  • workbox-window ^7.0.0 development
  • @vueuse/core ^10.1.0
  • jiti ^1.18.2
  • mermaid workspace:^
  • vue ^3.3
packages/mermaid-example-diagram/package.json npm
  • @types/cytoscape ^3.19.9 development
  • concurrently ^8.0.0 development
  • mermaid workspace:* development
  • rimraf ^5.0.0 development
  • @braintree/sanitize-url ^6.0.1
  • cytoscape ^3.23.0
  • cytoscape-cose-bilkent ^4.1.0
  • cytoscape-fcose ^2.1.0
  • d3 ^7.0.0
  • khroma ^2.0.0
  • non-layered-tidy-tree-layout ^2.0.2
packages/mermaid-zenuml/package.json npm
  • mermaid workspace:^ development
  • @zenuml/core ^3.0.6
pnpm-lock.yaml npm
  • 2059 dependencies
tests/webpack/package.json npm
  • webpack ^5.88.2 development
  • webpack-cli ^4.10.0 development
  • webpack-dev-server ^4.11.1 development
  • @mermaid-js/mermaid-example-diagram workspace:*
  • mermaid workspace:*