Improvement in managing binary dependencies #44
kishaningithub
started this conversation in
Ideas
Replies: 1 comment
-
I was able to integrate bingo in my tool rdapp and it works quite well |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Problem i see
There are tools like golangci-lint included as a direct dependency in the go.mod file, when we do things like
go mod graph
you see the amount of transitive deps it pulls in and it makes the dependency graph a chaos.For example try this and see a visualization of the amount of deps
graph.svg
in your browserYou can install
modgraphviz
by runninggo install golang.org/x/exp/cmd/modgraphviz
Suggestion
I suggest giving https://github.com/bwplotka/bingo a try. Here is a blog on the same by the creator https://www.bwplotka.dev/2020/bingo/ this blog goes through several problems faced while managing binary deps in a go project
Beta Was this translation helpful? Give feedback.
All reactions