Swimlanes.io – generated editable sequence diagrams
71–80 of 114 posts
Re: Swimlanes.io – generated editable sequence diagrams
#72Prior art: 1. Plant UML: http://www.plantuml.com/plantuml/umla/SoWkIImgAStDuNBCoKnELT... PlantUML supports many diagram types, and there's a nice VS Code plugin with side by side live preview. 2. https://www.websequencediagrams.com/ Has a hand-drawn style option which is nice: https://i.imgur.com/lh4jaVL.png
collated these diagramming tools here: https://github.com/sw-yx/spark-joy/blob/master/README.md#gen...
Re: Swimlanes.io – generated editable sequence diagrams
#73For sequence diagrams in text format you can take diagwiz for a spin. There is also an online version of the tool. Disclaimer: It is working, but it's still just an experiment and might change a lot. https://github.com/kjagiello/diagwiz https://diagwiz.io/playground/ (not really mobile friendly)
Re: Swimlanes.io – generated editable sequence diagrams
#74https://mscgen.js.org/
Re: Swimlanes.io – generated editable sequence diagrams
#75I was hoping to see a swim lane diagram? Could you add that as a feature? Then I can share it with some business analysts who love that kind of thing.
Re: Swimlanes.io – generated editable sequence diagrams
#76Reminds me of https://bramp.github.io/js-sequence-diagrams/ The nice thing about that library is that you actually can have a self-contained HTML page with a diagram, like: var diagram = Diagram.parse("A->B: Message"); diagram.drawSVG("diagram", {theme: 'hand'}); And this will draw render a sequence diagram in any browser. I've used this to have as documentation in the /docs folder of project Git repository for some…
You actually don't even need the HTML scaffolding for that, and can author a js-sequence-diagrams diagram straight into a text file, append a simple script to render the document, and save as .html! Example: https://unpkg.com/browse/js-sequence-diagrams-autorenderer@1... - click on "view raw" to see it in action. Looks a lot cleaner, and the .html itself is a valid diagram as the script tag that bootstraps the render…