FoggyBalrog.MermaidDotNet
0.14.0
dotnet add package FoggyBalrog.MermaidDotNet --version 0.14.0
NuGet\Install-Package FoggyBalrog.MermaidDotNet -Version 0.14.0
<PackageReference Include="FoggyBalrog.MermaidDotNet" Version="0.14.0" />
paket add FoggyBalrog.MermaidDotNet --version 0.14.0
#r "nuget: FoggyBalrog.MermaidDotNet, 0.14.0"
// Install FoggyBalrog.MermaidDotNet as a Cake Addin #addin nuget:?package=FoggyBalrog.MermaidDotNet&version=0.14.0 // Install FoggyBalrog.MermaidDotNet as a Cake Tool #tool nuget:?package=FoggyBalrog.MermaidDotNet&version=0.14.0
FoggyBalrog.MermaidDotNet
<img src="https://raw.githubusercontent.com/FoggyBalrog/MermaidDotNet/main/mermaid.png" alt="Mermaid icon" width="100"/>
A .NET library to generate Mermaid diagrams code.
[!WARNING]
Still under development. Not ready for production.
- Add the library to your project
- Compatibility
- About documentation
- Quick Start
- Unsafe mode
- License
- Credits
Add the library to your project
Install the FoggyBalrog.MermaidDotNet NuGet package from nuget.org, or download the nupkg file from the latest release on GitHub.
Compatibility
The library targets .NET Standard 2.1, that is notably compatible with .NET Core 3.0 and later, .NET 5.0 and later, and Mono 6.4 and later.
See details on the package frameworks tab on nuget.org or on Microsoft Learn.
About documentation
To read the documentation for the latest published version, go to https://foggybalrog.github.io/MermaidDotNet.
The current README is valid for the commit you are currently viewing. This may differ from the latest published version, or the version you have installed.
To see the documentation for a specific version, checkout the corresponding tag on GitHub and read the files in the docs
folder. Optionally, you can view the generated documentation locally using DocFX by running docfx ./docs/docfx.json --serve
in the root of the repository.
Quick Start
Flowchart
string diagram = Mermaid
.Flowchart()
.AddNode("N1", out var n1)
.AddNode("N2", out var n2)
.AddNode("N3", out var n3)
.AddLink(n1, n2, "some text")
.AddLink(n2, n3)
.Build();
flowchart TB
id1["N1"]
id2["N2"]
id3["N3"]
id1 -->|"some text"| id2
id2 --> id3
Read more at flowchart.md.
Sequence diagram
string diagram = Mermaid
.SequenceDiagram()
.AddParticipant("Alice", out var a)
.AddParticipant("Bob", out var b)
.SendMessage(a, b, $"Hello {b.Name}!")
.SendMessage(b, a, $"Hello {a.Name}!")
.Build();
sequenceDiagram
participant Alice
participant Bob
Alice->>Bob: Hello Bob!
Bob->>Alice: Hello Alice!
Read more at sequence-diagram.md.
Class diagram
var diagram = Mermaid
.ClassDiagram()
.AddClass("Animal", out var animal)
.AddClass("Dog", out var dog)
.AddProperty(animal, "int", "Age")
.AddMethod(animal, null, "Breathe")
.AddMethod(animal, "void", "Eat", parameters:
[
("Food", "food")
])
.AddMethod(dog, "Sound", "Bark", parameters:
[
("int", "times"),
("int", "volume")
])
.AddRelationship(animal, dog, RelationshipType.Inheritance, label: "A dog is an animal")
.Build();
classDiagram
class Animal {
+int Age
+Breathe()
+Eat(Food food) Energy
}
class Dog {
+Bark(int times, int volume) Sound
}
Animal <|-- Dog : A dog is an animal
Read more at class-diagram.md.
State diagram
var diagram = Mermaid
.StateDiagram()
.AddState("State 1", out var s1)
.AddState("State 2", out var s2)
.AddTransitionFromStart(s1)
.AddStateTransition(s1, s2)
.AddTransitionToEnd(s2)
.Build();
stateDiagram-v2
s1 : State 1
s2 : State 2
[*] --> s1
s1 --> s2
s2 --> [*]
Read more at state-diagram.md.
Entity relationship diagram
string diagram = Mermaid
.EntityRelationshipDiagram()
.AddEntity("Customer", out var c)
.AddEntity("Order", out var o)
.AddEntity("Product", out var p)
.AddRelationship(Cardinality.ExactlyOne, c, Cardinality.ZeroOrMore, o, "places")
.AddRelationship(Cardinality.ExactlyOne, o, Cardinality.OneOrMore, p, "contains")
.Build();
erDiagram
Customer ||--o{ Order : "places"
Order ||--|{ Product : "contains"
Read more at entity-relationship-diagram.md.
User journey diagram
var diagram = Mermaid
.UserJourneyDiagram()
.AddTask("Task 1", 1, "Actor 1", "Actor 2")
.AddTask("Task 2", 2)
.AddSection("Section 1")
.AddTask("Task 3", 3)
.AddTask("Task 4", 4, "Actor 3")
.AddSection("Section 2")
.AddTask("Task 5", 5, "Actor 1", "Actor 3")
.AddTask("Task 6", 6, "Actor 2")
.Build();
journey
Task 1: 1: Actor 1, Actor 2
Task 2: 2
section Section 1
Task 3: 3
Task 4: 4: Actor 3
section Section 2
Task 5: 5: Actor 1, Actor 3
Task 6: 6: Actor 2
Read more at user-journey-diagram.md.
Gantt diagram
string diagram = Mermaid
.GanttDiagram()
.AddTask("Foo", Date("2024-05-01"), Date("2024-05-05"), out _)
.AddTask("Bar", Date("2024-05-08"), Date("2024-05-12"), out _)
.Build();
gantt
dateFormat YYYY-MM-DD
Foo: task1, 2024-05-01, 2024-05-05
Bar: task2, 2024-05-03, 2024-05-08
Read more at gantt-diagram.md.
Git graph
string graph = Mermaid
.GitGraph()
.Commit()
.Branch("dev", out Branch dev)
.Commit()
.Checkout(dev)
.Commit()
.Commit()
.CheckoutMain()
.Commit()
.Merge(dev)
.Commit()
.Build();
gitGraph
commit
branch dev
commit
checkout dev
commit
commit
checkout main
commit
merge dev
commit
Read more at git-graph.md.
Mind Map
var mindMap = Mermaid
.MindMap("Root")
.AddNode("Node 1", out var node1)
.AddNode("Node 2", out var node2, node1)
.AddNode("Node 3", out var node3, node1)
.AddNode("Node 4", out var node4, node2)
.AddNode("Node 5", out var node5, node2)
.AddNode("Node 6", out var node6, node3)
.AddNode("Node 7", out var node7, node3)
.Build();
mindmap
Root
Node 1
Node 2
Node 4
Node 5
Node 3
Node 6
Node 7
Read more at mind-map.md.
Pie chart
var pieChart = Mermaid
.PieChart()
.AddDataSet("Label1", 42.7)
.AddDataSet("Label2", 57.3)
.Build();
pie
"Label1": 42.7
"Label2": 57.3
Read more at pie-chart.md.
Quadrant chart
var quadrantChart = Mermaid
.QuadrantChart()
.AddPoint("A", 0.1, 0.2)
.AddPoint("B", 0.3, 0.4)
.Build();
quadrantChart
A: [0.1, 0.2]
B: [0.3, 0.4]
Read more at quadrant-chart.md.
Requirement diagram
string diagram = Mermaid
.RequirementDiagram()
.AddRequirement("Requirement 1", out var requirement1)
.AddRequirement("Requirement 2", out var requirement2)
.AddElement("Element 1", out var element1)
.AddElement("Element 2", out var element2)
.AddRelationship(element1, requirement1, RelationshipType.Satisfies)
.AddRelationship(element2, requirement2, RelationshipType.Satisfies)
.Build();
requirementDiagram
requirement "Requirement 1" {
}
requirement "Requirement 2" {
}
element "Element 1" {
}
element "Element 2" {
}
"Element 1" - satisfies -> "Requirement 1"
"Element 2" - satisfies -> "Requirement 2"
Read more at requirement-diagram.md.
Timeline diagram
string diagram = Mermaid
.TimelineDiagram("Some title")
.AddEvents("2021", "Event 1", "Event 2")
.AddEvents("2022", "Event 3")
.AddEvents("2023", "Event 4", "Event 5", "Event 6")
.Build();
timeline
title Some title
2021 : Event 1 : Event 2
2022 : Event 3
2023 : Event 4 : Event 5 : Event 6
Read more at timeline-diagram.md.
Unsafe mode
By default, the library uses safe mode, which means that it will throw an exception if the arguments passed to the methods are invalid.
You can disable this behavior by accessing the buiders through the Unsafe
property in the Mermaid
class.
Example:
string diagram = Mermaid
.Unsafe
.Flowchart()
.AddNode("N1", out var n1)
.AddNode("N2", out var n2)
.AddNode("N3", out var n3)
.AddLink(n1, n2, "some text")
.AddLink(n2, n3)
.Build();
License
This project is licensed under the MIT License. See the LICENSE file for details.
Credits
Mermaid icon created by Smashicons on Flaticon.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- YamlDotNet (>= 16.1.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.14.0 | 72 | 11/5/2024 |
0.13.0 | 439 | 9/20/2024 |
0.12.0 | 130 | 8/13/2024 |
0.11.0 | 394 | 7/23/2024 |
0.10.0 | 83 | 7/8/2024 |
0.9.0 | 104 | 6/14/2024 |
0.8.0 | 93 | 6/13/2024 |
0.7.0 | 359 | 5/23/2024 |
0.6.0 | 78 | 5/13/2024 |
0.5.0 | 213 | 5/2/2024 |
0.4.0 | 115 | 4/29/2024 |
0.3.0 | 115 | 4/26/2024 |
0.2.0 | 153 | 4/16/2024 |
0.1.0 | 117 | 4/16/2024 |