mermaid
Generation of diagrams like flowcharts or sequence diagrams from text in a similar manner as markdown
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
Keywords from Contributors
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
Metadata Files
README.md
Mermaid
Generate diagrams from markdown-like text.
📖 Documentation | 🚀 Getting Started | 🌐 CDN | 🙌 Join Us
Try Live Editor previews of future releases: Develop | Next

: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! 🙏
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.
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
<
```
```mermaid
classDiagram
Class01 <|-- AveryLongClass : Cool
<
```
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

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
- Twitter: mermaidjs_
- Repositories: 11
- Profile: https://github.com/mermaid-js
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
Top Committers
| Name | 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... | ||
Committer Domains (Top 20 + Academic)
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
Pull Request Labels
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.
- Homepage: https://github.com/mermaid-js/mermaid#readme
- License: MIT
-
Latest release: 11.10.0
published 4 months ago
Rankings
Maintainers (5)
Advisories (7)
- Prototype pollution vulnerability found in Mermaid's bundled version of DOMPurify
- Possible inject arbitrary `CSS` into the generated graph affecting the container HTML
- Mermaid improperly sanitizes sequence diagram labels leading to XSS
- Mermaid does not properly sanitize architecture diagram iconText leading to XSS
- Incorrect sanitisation function leads to `XSS` in mermaid
- Cross-Site Scripting in mermaid
- Cross-site Scripting in Mermaid
npmjs.org: @mermaid-js/mermaid-mindmap
Mindmap diagram module for MermaidJS.
- Homepage: https://github.com/mermaid-js/mermaid#readme
- License: MIT
-
Latest release: 9.3.0
published about 3 years ago
Rankings
Maintainers (6)
proxy.golang.org: github.com/mermaid-js/mermaid
- Documentation: https://pkg.go.dev/github.com/mermaid-js/mermaid#section-documentation
- License: mit
-
Latest release: v11.0.0+incompatible
published over 1 year ago
Rankings
npmjs.org: @mermaid-js/mermaid-zenuml
MermaidJS plugin for ZenUML integration
- Homepage: https://github.com/mermaid-js/mermaid#readme
- License: MIT
-
Latest release: 0.2.2
published 4 months ago
Rankings
Maintainers (6)
repo1.maven.org: org.webjars.npm:mermaid
WebJar for mermaid
- Homepage: https://www.webjars.org
- Documentation: https://appdoc.app/artifact/org.webjars.npm/mermaid/
- License: MIT
-
Latest release: 11.6.0
published 7 months ago
Rankings
npmjs.org: @mermaid-js/parser
MermaidJS parser
- Homepage: https://github.com/mermaid-js/mermaid/tree/develop/packages/mermaid/parser/#readme
- License: MIT
-
Latest release: 0.6.2
published 5 months ago
Rankings
Maintainers (6)
npmjs.org: fork-mermaid
Markdown-ish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.
- Homepage: https://github.com/mermaid-js/mermaid#readme
- License: MIT
-
Latest release: 1.0.0-beta.8
published over 2 years ago
Rankings
Maintainers (1)
npmjs.org: @deboxsoft/mermaid
Markdown-ish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.
- Homepage: https://github.com/mermaid-js/mermaid#readme
- License: MIT
-
Latest release: 9.4.4
published almost 3 years ago
Rankings
Maintainers (1)
npmjs.org: @mermaid-js/layout-tidy-tree
Tidy-tree layout engine for mermaid
- Homepage: https://github.com/mermaid-js/mermaid#readme
- License: MIT
-
Latest release: 0.2.0
published 4 months ago
Rankings
Maintainers (6)
npmjs.org: @ted-marozzi/mermaid
Markdown-ish syntax for generating flowcharts, mindmaps, sequence diagrams, class diagrams, gantt charts, git graphs and more.
- Homepage: https://github.com/mermaid-js/mermaid#readme
- License: MIT
-
Latest release: 10.6.1
published about 2 years ago
Rankings
Maintainers (1)
npmjs.org: mermaid-eden
Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.
- Homepage: https://github.com/mermaid-js/mermaid#readme
- License: MIT
-
Latest release: 10.2.4
published about 2 years ago
Rankings
Maintainers (1)
npmjs.org: mmd-ontology-ttl-monorepo
Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.
- Homepage: https://github.com/mermaid-js/mermaid
- License: MIT
- Status: unpublished
-
Latest release: 10.2.4
published over 2 years ago
Rankings
Maintainers (1)
npmjs.org: @mermaid-js/examples
Mermaid examples package
- Homepage: https://github.com/mermaid-js/mermaid#readme
- License: mit
-
Latest release: 1.0.0
published 5 months ago
Rankings
Maintainers (6)
npmjs.org: mermaid-patch-for-node
Markdown-ish syntax for generating flowcharts, mindmaps, sequence diagrams, class diagrams, gantt charts, git graphs and more.
- Homepage: https://github.com/mermaid-js/mermaid#readme
- License: MIT
-
Latest release: 11.9.0-patch.0
published 4 months ago
Rankings
Maintainers (1)
npmjs.org: @mermaid-js/tiny
Tiny version of mermaid
- Homepage: https://github.com/mermaid-js/mermaid#readme
- License: MIT
-
Latest release: 11.11.0
published 4 months ago
Rankings
Maintainers (6)
npmjs.org: mermaid-es6
Markdown-ish syntax for generating flowcharts, mindmaps, sequence diagrams, class diagrams, gantt charts, git graphs and more.
- Homepage: https://github.com/mermaid-js/mermaid#readme
- License: MIT
-
Latest release: 11.6.0
published 9 months ago
Rankings
Maintainers (1)
npmjs.org: @jeswr/mermaid
Markdown-ish syntax for generating flowcharts, mindmaps, sequence diagrams, class diagrams, gantt charts, git graphs and more.
- Homepage: https://github.com/mermaid-js/mermaid#readme
- License: MIT
-
Latest release: 11.0.0-alpha.12
published 10 months ago
Rankings
Maintainers (1)
npmjs.org: @ted-marozzi/layout-elk
ELK layout engine for mermaid
- Homepage: https://github.com/mermaid-js/mermaid#readme
- License: MIT
-
Latest release: 0.1.5-pro.9
published about 1 year ago
Rankings
Maintainers (1)
npmjs.org: @mermaid-js/layout-elk
ELK layout engine for mermaid
- Homepage: https://github.com/mermaid-js/mermaid#readme
- License: MIT
-
Latest release: 0.2.0
published 4 months ago
Rankings
Maintainers (6)
npmjs.org: better-mermaid
Markdown-ish syntax for generating flowcharts, mindmaps, sequence diagrams, class diagrams, gantt charts, git graphs and more.
- Homepage: https://github.com/mermaid-js/mermaid#readme
- License: MIT
-
Latest release: 11.0.0-alpha.11
published about 1 year ago
Rankings
Maintainers (1)
repo1.maven.org: org.webjars.bower:mermaid
WebJar for mermaid
- Homepage: https://www.webjars.org
- Documentation: https://appdoc.app/artifact/org.webjars.bower/mermaid/
- License: MIT
-
Latest release: 10.2.3
published over 2 years ago
Rankings
npmjs.org: @eten-lab/mermaid-monorepo
Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.
- Homepage: https://github.com/mermaid-js/mermaid#readme
- License: MIT
-
Latest release: 10.2.4
published almost 2 years ago
Rankings
Maintainers (8)
npmjs.org: @eten-lab/mermaid
Markdown-ish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.
- Homepage: https://github.com/mermaid-js/mermaid#readme
- License: MIT
-
Latest release: 0.1.2
published over 1 year ago
Rankings
Maintainers (8)
npmjs.org: mermaid-elk
Markdown-ish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.
- Homepage: https://github.com/mermaid-js/mermaid#readme
- License: MIT
-
Latest release: 10.9.0
published over 1 year ago
Rankings
Maintainers (1)
npmjs.org: @diegosogari/mermaid
Markdown-ish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.
- Homepage: https://github.com/mermaid-js/mermaid
- License: MIT
- Status: removed
-
Latest release: 10.6.2-b9
published about 2 years ago
Rankings
Maintainers (1)
npmjs.org: @dwelle/mermaid
Markdown-ish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.
- Homepage: https://github.com/mermaid-js/mermaid#readme
- License: MIT
-
Latest release: 10.8.1
published about 2 years ago
Rankings
Maintainers (1)
npmjs.org: @mermaid-js/flowchart-elk
Flowchart plugin for mermaid with ELK layout
- Homepage: https://github.com/mermaid-js/mermaid#readme
- License: MIT
-
Latest release: 1.0.0-rc.1
published about 2 years ago
Rankings
Maintainers (6)
npmjs.org: @sautejfi/mermaid
Markdown-ish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.
- Homepage: https://github.com/mermaid-js/mermaid#readme
- License: MIT
-
Latest release: 10.2.4
published over 2 years ago
Rankings
Maintainers (1)
npmjs.org: @sautejfi/mermaid-monorepo
Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.
- Homepage: https://github.com/mermaid-js/mermaid
- License: MIT
- Status: removed
-
Latest release: 10.2.4
published over 2 years ago
Maintainers (1)
Dependencies
- actions/checkout v3 composite
- actions/setup-node v3 composite
- pnpm/action-setup v2 composite
- actions/checkout v3 composite
- actions/setup-node v3 composite
- actions/upload-artifact v3 composite
- pnpm/action-setup v2 composite
- actions/checkout v3 composite
- actions/checkout v3 composite
- testomatio/check-tests stable composite
- actions/checkout v3 composite
- github/codeql-action/analyze v2 composite
- github/codeql-action/autobuild v2 composite
- github/codeql-action/init v2 composite
- actions/checkout v3 composite
- actions/dependency-review-action v3 composite
- actions/checkout v3 composite
- actions/setup-node v3 composite
- cypress-io/github-action v4 composite
- pnpm/action-setup v2 composite
- 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
- andymckay/labeler 1.0.4 composite
- actions/cache v3 composite
- actions/checkout v3 composite
- lycheeverse/lychee-action v1.8.0 composite
- EndBug/add-and-commit v9 composite
- actions/checkout v3 composite
- actions/setup-node v3 composite
- pnpm/action-setup v2 composite
- Yash-Singh1/pr-labeler-config-validator releases/v0.0.3 composite
- actions/checkout v3 composite
- TimonVS/pr-labeler-action v4 composite
- 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
- toolmantim/release-drafter v5 composite
- actions/checkout v3 composite
- actions/setup-node v3 composite
- pnpm/action-setup v2 composite
- actions/checkout v3 composite
- actions/setup-node v3 composite
- fregante/setup-git-user v2 composite
- pnpm/action-setup v2 composite
- actions/checkout v3 composite
- actions/setup-node v3 composite
- codecov/codecov-action v3 composite
- pnpm/action-setup v2 composite
- Dunning-Kruger/unlock-issues v1 composite
- EndBug/add-and-commit v9 composite
- actions/checkout v3 composite
- cypress/included 12.17.4
- node 18.18.0-alpine3.18
- @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
- @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
- @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
- @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
- mermaid workspace:^ development
- @zenuml/core ^3.0.6
- 2059 dependencies
- 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:*
