At the time this book was written, Glide was the best choice to handle Go dependencies. The How to build and run Go projects section discusses its use in detail.
Â
Since then, two new, more widely accepted Go dependency management solutions have emerged: dep and vgo.
Â
You can find more information about dep at https://github.com/golang/dep.
You can find more information about vgo at https://github.com/golang/go/wiki/vgo.
You can find more information about vgo at https://github.com/golang/go/wiki/vgo.
Â
Â
Glide was deprecated in favor of dep, and dep will be replaced by vgo.
Â
As of today, at the time of our book revision (June 2018), I would recommend using dep, but I would recommend using vgo when Go 1.11 is released.
Â
Go versions can be found at https://golang.org/doc/devel/release.html.
Go 1.10 was released on 2018/02/16. Go is released every 6 months.
Go 1.10 was released on 2018/02/16. Go is released every 6 months.
Â
Â
As far as I know,...