Make Diagrams with Mermaid

Dec 20, 2020 · 1 min read
Make Diagrams with Mermaid

Mermaid is an awesome software engineering diagramming tool. Write markdowns like this-

graph TD  
A[Client] --> B[Load Balancer]  
B --> C[Server01]  
B --> D[Server02]  

to generate diagrams like this-

graph TD A[Client] --> B[Load Balancer] B --> C[Server01] B --> D[Server02]

Find more about mermaid at mermaid-js.github.io/mermaid/

Sharing is caring!