go mod graph | wc -l
results in 3540. :-D go mod graph | gomodot | dot -Tpng -o graph.png
gives this piece of art:
Watch out, the large version is 42.6Β MiB in size! https://lyse.isobeef.org/tmp/yarnd-dependency-graph.png
$ go mod why github.com/golang/protobuf
# github.com/golang/protobuf
(main module does not need package github.com/golang/protobuf)
@lyse What is
go mod graph
_really_ showing? π€
$ go mod why github.com/golang/protobuf
# github.com/golang/protobuf
(main module does not need package github.com/golang/protobuf)
@lyse What is
go mod graph
_really_ showing? π€
$ go mod why github.com/golang/protobuf
# github.com/golang/protobuf
(main module does not need package github.com/golang/protobuf)
@lyse What is
go mod graph
_really_ showing? π€
$ go mod why github.com/golang/protobuf
# github.com/golang/protobuf
(main module does not need package github.com/golang/protobuf)
@lyse What is
go mod graph
_really_ showing? π€
$ go mod why -m github.com/golang/protobuf
# github.com/golang/protobuf
git.mills.io/yarnsocial/yarn/internal
git.mills.io/prologic/observe
github.com/prometheus/client_golang/prometheus
github.com/golang/protobuf/proto
$ go mod why -m github.com/golang/protobuf
# github.com/golang/protobuf
git.mills.io/yarnsocial/yarn/internal
git.mills.io/prologic/observe
github.com/prometheus/client_golang/prometheus
github.com/golang/protobuf/proto
$ go mod why -m github.com/golang/protobuf
# github.com/golang/protobuf
git.mills.io/yarnsocial/yarn/internal
git.mills.io/prologic/observe
github.com/prometheus/client_golang/prometheus
github.com/golang/protobuf/proto
$ go mod why -m github.com/golang/protobuf
# github.com/golang/protobuf
git.mills.io/yarnsocial/yarn/internal
git.mills.io/prologic/observe
github.com/prometheus/client_golang/prometheus
github.com/golang/protobuf/proto
why
sub command, thanks! At work I wrote a script to filter the go mod graph
output in order to find the path(s) how a certain package is pulled in.
github.com/vcraescu/go-paginator
pulls in several databases such as github.com/mattn/go-sqlite3
, github.com/go-sql-driver/mysql
, github.com/denisenkom/go-mssqldb
and a few other things. Admittedly, only in its tests, but still. Probably still worth looking for a replacement or doing it completely on our own, depending on what is actually needed. Also, I just noticed that this blackfriday markdown library is included in both v1 and v2. I'm sure there are other libraries with the same issue. Gotta do some spring cleaning.
install "gomodot"
puts you on the google first page. 
install "gomodot"
puts you on the google first page. 