Created
October 11, 2018 16:04
-
-
Save myitcv/752d2dfbaf8b285ab2fb205ec1a26252 to your computer and use it in GitHub Desktop.
go mod graph
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone https://github.com/gobuffalo/buffalo /tmp/buffalo | |
cd /tmp/buffalo | |
go mod download | |
(echo "digraph {"; echo "graph [rankdir=TB, overlap=false];"; go mod graph 2>/dev/null | awk '{print "\""$1"\" -> \""$2"\""};'; echo "}" ) | twopi -Tpng > graph.png | |
display graph.png |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment