Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Madge | 7,801 | 1,662 | 918 | 3 days ago | 75 | June 04, 2023 | 92 | mit | JavaScript | |
Create graphs from your CommonJS, AMD or ES6 module dependencies | ||||||||||
Blast Radius | 1,855 | 3 months ago | 44 | mit | JavaScript | |||||
Interactive visualizations of Terraform dependency graphs using d3.js | ||||||||||
Graph | 1,533 | 35 | 12 days ago | 35 | July 05, 2023 | 33 | apache-2.0 | Go | ||
A library for creating generic graph data structures and modifying, analyzing, and visualizing them. | ||||||||||
D3 Graphviz | 1,497 | 33 | 29 | 2 months ago | 67 | August 01, 2023 | 15 | bsd-3-clause | JavaScript | |
Graphviz DOT rendering and animated transitions using D3 | ||||||||||
Graphviz | 1,425 | 2,191 | 1,147 | 2 months ago | 56 | July 23, 2022 | 9 | mit | Python | |
Simple Python interface for Graphviz | ||||||||||
Pycallgraph | 1,418 | 5 years ago | 61 | gpl-2.0 | Python | |||||
pycallgraph is a Python module that creates call graphs for Python programs. | ||||||||||
Simple Graph | 1,200 | 6 months ago | 5 | July 05, 2021 | mit | |||||
This is a simple graph database in SQLite, inspired by "SQLite as a document database" | ||||||||||
Lsofgraph | 942 | 4 years ago | bsd-2-clause | Lua | ||||||
lsof to graphviz | ||||||||||
Loom | 857 | 4 months ago | 14 | February 09, 2020 | 41 | Clojure | ||||
Graph library for Clojure. Mailing list https://groups.google.com/forum/#!forum/loom-clj | ||||||||||
Xdot.py | 807 | 38 | 14 days ago | 9 | November 21, 2020 | 15 | lgpl-3.0 | Python | ||
Interactive viewer for graphs written in Graphviz's dot language. |
A small utility to convert Unix lsof
output to a graph showing FIFO and UNIX interprocess communication.
Generate graph:
sudo lsof -n -F | ./lsofgraph | dot -Tjpg > /tmp/a.jpg
or add unflatten
to the chain for a better layout:
sudo lsof -n -F | ./lsofgraph | unflatten -l 1 -c 6 | dot -T jpg > /tmp/a.jpg
It seems that Lua was an unfortunate choice, since people keep sending me links to ports in other languages. If you also hate Lua, raise your hand and check the Python port at akme/lsofgraph-python or the Perl port at tehmoth/lsofgraph.