Is there a simple online tool that will generate a dependency graph (boxes linked by arrow lines) based on text input like:
A -> B
Much like this one:
(It generates a sequence diagram)
Is there a simple online tool that will generate a dependency graph (boxes linked by arrow lines) based on text input like:
A -> B
Much like this one:
(It generates a sequence diagram)
graphviz is a tool for generating graphs.
webgraphviz.com is a web app that uses graphviz, and lets you modify the text and display the corresponding graph (it has 5 samples/examples as well).
graphviz takes input like this:
digraph G {
A->B
}
I know this is really old, but it might help someone else later.
I personally like yuml.me.
Given the following syntax:
[note: You can stick notes on diagrams too!{bg:cornsilk}],
[Customer]<>1-orders>[Order],
[Order]++*-items>[LineItem],
[Order]-1>[DeliveryMethod],
[Order]*-products>[Product],
[Category]<->[Product],
[DeliveryMethod]^[National],
[DeliveryMethod]^[International]
You can generate a rather complex diagram. And to facilitate it's use, this is all exposed as a series of simple URLs which you can embed in just about any web-based document.
['Dummy']
['A->B', 'A->C', 'D->C', 'D->A']
function(edge) { return /(.+)->(.+)/.exec(edge)[1];}
function(edge) { return /(.+)->(.+)/.exec(edge)[2];}
New Graph
buttonOr you can use mermaid. https://mermaidjs.github.io/, which is available in Markdown interpreters, too.