Popularity
6.2
Declining
Activity
0.0
Stable
447
7
17
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
dependency tool for go, godep helps build packages reproducibly by fixing their dependencies. -
govendor
Go Package Manager. Go vendor tool that works with the standard vendor file. -
virtualgo
Virtualgo: Easy and powerful workspace based development for go -
gvt
gvt is a simple vendoring tool made for Go native vendoring (aka GO15VENDOREXPERIMENT), based on gb-vendor. -
gigo
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.
Access the most powerful time series database as a service
Ingest, store, & analyze all types of time series data in a fully-managed, purpose-built database. Keep data forever with low-cost storage and superior data compression.
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)