DEV Community

Cover image for 3 Diagram as Code Tools That Combined Cover All Your Needs
Alexandre Couedelo
Alexandre Couedelo

Posted on • Originally published at Medium

3 Diagram as Code Tools That Combined Cover All Your Needs

The ability to create meaningful diagrams is the pinnacle of communication skills for any Engineer. Forget your boring presentations or lengthy documentation. One diagram is worth 1000 words. So take the time to create a representation of what needs to be done: infrastructure diagrams, UML diagrams, mindmap, and others. On top of that, do it as code; We are in the era of everything as code, after all! ๐Ÿ˜‡

Without a surprise, there are some delightful tools out there to do just that as code. So let me introduce to you three tools that combined will let you create all the diagrams you need; Two of which have VS Code extension ๐Ÿค—.

Letโ€™s get things right! Before digging into your potential new playthings ๐Ÿš€, letโ€™s take a step back and adequately review why and when you will need to create a diagram (as code).


Why should I equip myself with diagrams as code tools?

The most apparent motive is stimulating team collaboration. I insisted on saying visualization is the pinnacle of communication for developers. Because it gives us the ability to conceptualize complex projects in a compelling way. In that matter, it bridges the gap between the developers and the business when it comes to an understanding of user flow and interactions. Among other diagrams also, let us visualize dependencies. They are the most concise way to leave track of analysis work done on a project. Therefore they are a pillar in onboarding new team members ๐Ÿ‘ถ๐Ÿป. In some cases, it helps to identify bottlenecks or bugs in the design or its implementation.

Suppose you don't want to waste time in the future by having your fellow engineer digging the weeds around your existing (or forgotten) code source, then create diagrams now and make everyone's life easier later.

When is the right time to create your diagrams? you may ask. For the Agilist reading me, these are my recommendations

I would suggest creating diagrams whenever you start a Story. When improving, expanding functionality or adding new features it will help you to start with a pair programming session or mob programming session at least. That way, your diagrams are used to convey your ideas to fellow engineers in the hope of producing clean and efficient code. To be efficient, always prioritize agreeing on the big picture with your team.

I also advise to initiate diagrams creation during Three Amigos process. Having visualization, even as a draft, is the best way to find consensus on building a solution for the problem tackled; determine if the solution is easily testable and keep track of increments done through the Agile process.


3 Tools to add to your gears

Diagrams - Architecture diagrams

Infrastructure visualization bridge the gap between what your systems look like now and the changes needed to meet expectations.

Lately, I went through a complete infrastructure retrospective, creating diagrams as a first step to unravel the pieces put together over the years. It ends up being a fantastic spring cleaning exercise ๐ŸŒผ. We found Diagrams a great library to perform that exercise. I realized that from now on, I should reflect all changes in the diagrams. If the diagram is alongside the code, you are more likely to edit them than if they are lost somewhere in Confluence. Besides, a diagram created as code is clean and consistent. Finally, one line of code is all you need to add any element, so no excuse for not having the time to update the diagram.

Diagrams are defined in python and as been implemented in Golang as well go-diagrams. The python version makes a clever use of the context Manager resulting in a straightforward and readable diagram description. Especially when tackling nested infrastructure. I used the code below to create the diagram above. This should give you a quick overview of what this Diagrams is capable of.

from diagrams import Diagram, Cluster, Edge
from diagrams.custom import Custom
from diagrams.onprem.compute import Server
from diagrams.onprem.monitoring import Grafana, Prometheus
from diagrams.onprem.container import Docker
from diagrams.onprem.database import Mongodb
from diagrams.onprem.iac import Ansible
from diagrams.onprem.ci import GithubActions

with Diagram(name="Startup infra for small self hosted project", show=False):

    ansible = Ansible("Ansible")
    actions = GithubActions("Github Actions")

    with Cluster("Master worker"):

        ingress = Custom("ingress", "/out/caddy2.png")

        with Cluster("Observability"):
            # Docker
            portainer = Custom("portainer", "/out/portainer.png")
            registery = Docker("Private Registery")
            ingress >> portainer >> registery 
            # Prometheus
            metrics = Prometheus("Prometheus")
            graphana = Grafana("Grafana")
            ingress >> graphana >> metrics
            # Provisioning
            ob = [metrics, graphana, portainer, registery]
            ob << Edge(color="firebrick", style="dashed") << ansible    

        with Cluster("Application worker", direction="TB"):
            app = Server("Application")
            db  = Mongodb("Database")
            ingress >> app >> db

        # CI/CD
        registery \
            << Edge(color="firebrick", style="dashed") << actions \
            >> Edge(color="firebrick", style="dashed") >> [db, app]
Enter fullscreen mode Exit fullscreen mode

You can find the code of this example here.

I recommend reading this article as an introduction to this tool: Scaling Up to Your First 10 Million Users. I like the approach of representing a growing infrastructure.


PlantUML - UML Sequence Diagrams

There are 13 types of UML diagrams, but if I had to choose only one to be alongside my code, it is without a doubt a sequence diagram. The trigger for me was that article. Implementing the feature explained in the article seems so clear because they provided a simple sequence diagram. Why not embed diagrams directly in my code repository and version them with git? I thought. I had already used PlantUML in the past, and I liked its short syntax to create a sequence diagram. So when I discovered that a VS Code extension existed, it was a no-brainer ๐Ÿ˜„. PlantUML is a must-have and will be my primary diagram tool to document my code.

Alt Text

Create a PlantUML sequence diagram takes only a few minutes. Think about it next time you are working on Controllers and Services; start your work session by crafting the appropriate diagrams. It would give everyone in your team a clear picture of what's going on with the code and, it will help the code review process by letting everyone better understand the context. No need for further documentation! One diagram and a few notes and comments should be all you really need.

Furthermore, by having a clear picture in your mind, you can better identify internal versus external interaction. Therefore identify potential blockers and write more testable code. I would compare creating a diagram to writing a draft for a technical article. It only takes a fraction of your time and makes you better because it stimulates you creative and critical thinking.

Below is the code I used to create the previous diagram.

@startuml
actor USER as U 
participant APP as A
participant SLACK as S

== App Home ==
autonumber

U -> S: Opens App Home Open
S -> A ++ #DarkSalmon: `app_home_opened` event triggered
A -> S --: `views.publish`
S -> U: Display The View in App Home

== Create Stickie note Triggered ==
autonumber 11

U -> S: Click button `Create Stickie note`
S -> A ++ #DarkSalmon: `Actions` interaction is triggered
A -> S --: `views.open`
S -> U: Opens modal

== Create Stickie note Submited ==
autonumber 21

U -> S: Submit modal `Create a stickie note`
S -> A ++ #DarkSalmon: `DialogSubmission` interaction is triggered
A -> S --: `views.publish`
S -> U: Update App Home

@enduml
Enter fullscreen mode Exit fullscreen mode

This is how it looks like in VS Code when using the plugin.

Alt Text

Draw.io - Quick and flexible Diagrams

No matter how powerful making a diagram as code can be, sometimes we need more freedom when creating or drafting our diagrams, almost like if needed a blackboard. Luckily we can still do this in VS Code and commit the result in our git history with Draw.io. the best of both worlds! Of course, the downside is that diagram might be less structured; well, you don't want our hands tight, so I believe that this is an excellent middle ground.

I have been using Draw.io for many years. When I discovered a VS Code extension, I add to try it! It turns out pretty great! Your diagrams are still alongside the code, easy to open and edit in VS Code, and anyone else can always open them in the web viewer.

Alt Text

References

Top comments (1)

Collapse
 
jayjeckel profile image
Jay Jeckel

Excellent! I love PlantUML, been using it for years for diagramming everything from code to roleplaying campaigns. That Draw.io looks interesting, going to give it a go next chance I get.