DEV Community

Discussion on: My Go Toolkit to Build a Frameworkless App

Collapse
 
biros profile image
Boris Jamot ✊ /

Hi Esteban!

I gave a chance to go mod even if the support is still experimental in the 1.11, because it should be stable in the release 1.12.

I bet it will be the future of Go dependency management and will replace go dep.

I found out that go mod is on the good way to be a solid dependency manager for Go. You just have to init your go.mod by typing go mod init and then, every time you'll type go get something, it will add it to your project's dependencies.

It's also a good way to organize your code in modules.