DEV Community

Cover image for Getting to know mermaid JS
Walter Nascimento
Walter Nascimento

Posted on

Getting to know mermaid JS

Mermaid is an open source tool for creating flow charts, Gantt charts and sequence diagrams using a simple markup language. It is designed to be used in text documents such as reports, presentations and web pages, and it supports multiple output formats including PNG, SVG and PDF. It is based on JavaScript and can be easily incorporated into web projects using a JavaScript library. Mermaid is a great choice for anyone who needs to create flowcharts and other types of diagrams quickly and easily.

Exemplo

Here is a simple example of how to use Mermaid syntax to create a flowchart:

graph TD;
    A-->B;
    A-->C;
    B-->D;
    C-->D;
Enter fullscreen mode Exit fullscreen mode

Preview

Example 1

Here, the letters A, B, C and D represent the steps in the flow, and the arrows indicate the relationships between them. Note that the syntax is easy to understand and follow. Additionally, there are many other options and features available in Mermaid to help create more complex and detailed diagrams.

Use Case

here's an example of how Mermaid can be used to create a use case diagram:

sequenceDiagram
    participant User as User
    participant System as System
    User->>System: Perform login
    System->>User: Request credentials
    User->>System: Provide credentials
    System->>User: Authenticate credentials
    User->>System: Access protected resources
Enter fullscreen mode Exit fullscreen mode

Preview

Example 2

In this example, the diagram shows the interactions between the user and the system during the login process. It shows how the user initiates the process, how the system requests the credentials, how the user provides them, and how the system authenticates them. Finally, the user is able to access the protected resources.

You can use Mermaid to create use case diagrams in various ways, depending on the specific use case. I hope this has helped to show how easy it is to use Mermaid to create use case diagrams.

LINK

If you liked it, go to the project's website and support

Mermaid


Thanks for reading!

If you have any questions, complaints or tips, you can leave them here in the comments. I will be happy to answer!

😊😊 See you later! 😊😊


Support Me

Youtube - WalterNascimentoBarroso
Github - WalterNascimentoBarroso
Codepen - WalterNascimentoBarroso

Latest comments (0)