Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to generate dependency graph with text [closed]

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:

www.websequencediagrams.com

(It generates a sequence diagram)

like image 288
hello_harry Avatar asked Apr 25 '15 22:04

hello_harry


2 Answers

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 } 
like image 81
Luis Muñiz Avatar answered Sep 16 '22 22:09

Luis Muñiz


http://www.nomnoml.com

It's using the syntax:

[A] -> [B] 
like image 31
fab Avatar answered Sep 19 '22 22:09

fab