Popularity
6.2
Stable
Activity
0.0
Stable
489
8
20
Programming language: Go
License: BSD 3-clause "New" or "Revised" License
Tags:
Package Management
modgv alternatives and similar packages
Based on the "Package Management" category.
Alternatively, view modgv alternatives based on common mentions on social networks and blogs.
-
godep
DISCONTINUED. dependency tool for go, godep helps build packages reproducibly by fixing their dependencies. -
gvt
DISCONTINUED. gvt is a simple vendoring tool made for Go native vendoring (aka GO15VENDOREXPERIMENT), based on gb-vendor. -
gigo
DISCONTINUED. PIP-like dependency tool for golang, with support for private repositories and hashes. -
go modules
Modules are the unit of source code interchange and versioning. The go command has direct support for working with modules, including recording and resolving dependencies on other modules.
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Promo
www.influxdata.com

Do you think we are missing an alternative of modgv or a related project?
Popular Comparisons
README
modgv
Converts 'go mod graph' output into GraphViz's DOT language.
- takes no options or arguments
- it reads the output generated by “go mod graph” on stdin
- generates a DOT language and writes to stdout
Usage:
go mod graph | modgv | dot -Tpng -o graph.png
For each module:
- the node representing the greatest version (i.e., the version chosen by Go's MVS algorithm) is colored green
- other nodes, which aren't in the final build list, are colored grey
Installation
go get github.com/lucasepe/modgv/modgv
Here 👉 https://graphviz.gitlab.io/download/ how to install GraphViz for your OS.
Sample output (PNG)
go mod graph | modgv | dot -Tpng -o graph.png
[](./graph.png)
Sample output (PDF with clickable links to module docs)
go mod graph | modgv | dot -Tps2 -o graph.ps
ps2pdf graph.ps graph.pdf
[View generated PDF](./graph.pdf)