Swimlanes.io – generated editable sequence diagrams
1–10 of 114 posts
Re: Swimlanes.io – generated editable sequence diagrams
#2
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 of my teams. It is great because it is pretty easy to update and maintain changes via VCS.Re: Swimlanes.io – generated editable sequence diagrams
#3Edit: ok, you need to add at least a colon after every edge
Re: Swimlanes.io – generated editable sequence diagrams
#4Reminds 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…
Re: Swimlanes.io – generated editable sequence diagrams
#51. 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:
Re: Swimlanes.io – generated editable sequence diagrams
#6Prior 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
Re: Swimlanes.io – generated editable sequence diagrams
#7Reminds 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…
Another similar site that i have used a lot is ... https://www.websequencediagrams.com/ .. i particularly like the svg export of websequencediagrams.
Re: Swimlanes.io – generated editable sequence diagrams
#8Prior 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
Re: Swimlanes.io – generated editable sequence diagrams
#9Re: Swimlanes.io – generated editable sequence diagrams
#10Prior 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