The Unreasonable Effectiveness of Sequence Diagrams in MermaidJS
11–20 of 113 posts
Re: The Unreasonable Effectiveness of Sequence Diagrams in MermaidJS
#12I only wish the renderer could render "sketch" style like Excalidraw, I don't like the default appearance. Obviously a small detail, though.
Re: The Unreasonable Effectiveness of Sequence Diagrams in MermaidJS
#13I really, _really_ wish I could generate SVGs of these without JavaScript and a headless browser.
Have you looked at d2lang - it supports SVG output: https://d2lang.com/tour/exports/ The syntax is a bit different though, so it depends on where your source is coming from, see here: https://text-to-diagram.com/?example=sequence&b=mermaid
However the big problem here being that d2 is still quite new and isn't as well supported as Mermaid JS
Re: The Unreasonable Effectiveness of Sequence Diagrams in MermaidJS
#14Re: The Unreasonable Effectiveness of Sequence Diagrams in MermaidJS
#15Entity diagrams, especially for database ERD
Timing diagrams (think: Gantt)
Interaction/flow diagrams
Use case diagrams
Re: The Unreasonable Effectiveness of Sequence Diagrams in MermaidJS
#16I really, _really_ wish I could generate SVGs of these without JavaScript and a headless browser.
Re: The Unreasonable Effectiveness of Sequence Diagrams in MermaidJS
#17I can highly recommend PlantUML as a simple language for creating sequence diagrams. It also supports other UML diagram types, which, despite what the article says, are also useful sometimes (so long as you don't worry about every last silly detail that's specified in the standard). @startuml Alice -> Bob: Authentication Request Bob --> Alice: Authentication Response Alice -> Bob: Another authentication Request Alice…
Re: The Unreasonable Effectiveness of Sequence Diagrams in MermaidJS
#18Re: The Unreasonable Effectiveness of Sequence Diagrams in MermaidJS
#19Re: The Unreasonable Effectiveness of Sequence Diagrams in MermaidJS
#20I really, _really_ wish I could generate SVGs of these without JavaScript and a headless browser.