gvt alternatives and similar packages
Based on the "Package Management" category.
Alternatively, view gvt 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. -
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.
Static code analysis for 29 languages.
Do you think we are missing an alternative of gvt or a related project?
Popular Comparisons
README
gvt
was a minimalistic Go vendoring tool made for the vendor/
folder (once known as the
GO15VENDOREXPERIMENT).
It was based on gb-vendor by Dave Cheney.
Since Go 1.11, the go
tool supports modules, a native solution to the dependency problem.
The go
tool understands gvt
manifest files, so you just have to run
GO111MODULE=on go mod init
GO111MODULE=on go mod vendor
to migrate and still populate the vendor/
folder for backwards compatibility.
Read more in the docs or on the wiki.
Modules support is experimental in 1.11, but it will probably serve you better than gvt would.
— So long, and thanks for all the fish!