You might have noticed that GO111MODULE=on is flourishing everywhere. Many readmes have that:
GO111MODULE=on go get golang.org/x/tools/gopls@lat...
For further actions, you may consider blocking this person and/or reporting abuse
Thank you for this article Maël!
You might find this as a breath of fresh air, regarding "Remember that go get also updates your go.mod"
: groups.google.com/g/golang-tools/c...
go build, go test, and others - stop updating go.mod by default
Seems like there is a flag that certain Go tools have, the "-mod=readonly" flag. Might be worth adding to your article.
Great post, thanks for sharing. One question. We use
GO111MODULE=offto install tools likegoimportand not to pollute ourgo.modfile:How is it worse than:
?
Using
GO111MODULE=off, you are falling back on the GOPATH method of installing the binary. In GOPATH mode, the master branch is always going to be the one checked out.With
GO111MODULE=on, you can rely on versions (i.e, git tags). The commandwill fetch the
latesttag. The great benefit of this method is that you can pin-point the version to a branch or a tag or a commit:And since Go 1.16, the command has been greatly simplified (as long as there is no
replacedirective in goimport's go.mod):That's such a helpful post, so many of my questions got answered here. One more:
I haven't fully got this working yet. Could you elaborate more on this a bit more please?
go mod vendoris actually doing, how would it be different without doing it? Would-mod=vendorwork without such step? and,-mod=vendoris forgo buildright?vendor/? Can you give a detailed example please -- i.e., Should I put mine in theGOPATHway, or thego modway (with twisted name and added versions), Can I not put everything, but only a selectful of them thatgo getis failing to get?Thanks
Hi! Thanks for the kind words!!! 🙂
go mod vendorwill vendor all the .go files that are imported by your project (it is smart and only vendors the files actually used, not the whole repo for each import path). It keeps track of what is being vendored invendor/modules.txt(not sure but I think this module list is only "for the humans" so that we can see in a diff what import paths have been added tovendor/)vendor/, you first need to have modules turned on (go.modat the root of your project) and then you can rungo mod vendoronce and here you go. Whenever you add import paths in your project, you also want to re-rungo mod vendorto add/delete any missing/unused vendored files.go mod vendoryou can fall back to using the good oldGOPATHway (i.e.GO111MODULE=off) and not care about modules anymore.go buildwould by default use the modules in$GOPATH/pkg/modinstead ofvendor/and you had to rungo build -mod=vendorvendor/folder is used by default and if you want to force using the$GOPATH/pkg/modyou can usego build -mod=mod.I think
go mod vendorputs things in the GOPATH way (except it only puts the files that are "actually used"). Not sure I answered the question properly though 😞Ah, right, I see the use case: you want to be able to manually add anything that
go getdoesn't know how to download (e.g. private networks, corporate firewalls).I guess you can definitely do that:
go mod vendorfor anything that works and manually copy-paste the import paths that are failing. I guess you would have to updatevendor/modules.txttoo but not sure. The important part is that the hash of the files you manually add must match the hashes in thego.sum(I guess). 👍Thanks a lot for such detailed explanation.
Would you share something about govendor(github.com/kardianos/govendor) vs Go111module=on . I've a doubt about Go111module=on which saves one version of packages only in GOPATH but Govendor works as individual project's versions which exactly as node_modules. Any views appreciated.
Hi sameen,
Unfortunately, I do not know about
govendor. But from what I understand, when building a binary withGO111MODULE=on, a single version of each dependency will be used for the whole build. Russ Cox calls it minimal version selection (see his blog post on Dec 3rd, 2019).What do you mean?
GO111MODULE=onwill remember (in go.sum) the version of dependencies and save each dependency copy inGOPATH/pkg/mod(i.e. one git clone at a fixed version if you will).Note that
GO111MODULE=onworks very differently fromnode_modulessince a single version is used per package, even when the package is used in multiple dependencies across the dependency tree.Hi, your example able says
use replace github.com/maelvls/beers => ../beers... but I think the worduseis not supposed to be there. Thanks for the post, btw.Good point, thank you!!
I fixed that in the article 👍
Thanks Maël, you single-handedly saved me about 8 hours of RTFM. Now I can get started on a project that enjoys sane, 21st-century style version control of its dependencies. And thanks for the
direnvlink, which appears to work with Emacs (although I can't vouch for that just yet)Thanks Maël
Maybe you can answer the following, related, question:
If I'm using Go 1.14, with go.mod, no vendor folder, should I have a GOPATH environment variable? Does this affect GO111MODULE in any way?
Thanks
/Martin
It could be good to add note on behaviour in Go 1.14. Does it differ from one in Go 1.13?
Definitely, I’ll try to find time to update to 1.14 🙂
Awesome!
BTW, this is a go to post about understanding GO111MODULES. IMO should be linked / part of official docs.
Done! I updated with 1.14 and two "new" pitfalls 🙂
What a software language. A simple start require great effort and time. It must be great to become GO developer ( ͡° ͜ʖ ͡°).
Wanderful article to sooth my pain while I was trying to figure out the GOPATH and its minions. :D
I thank and salute your sir ...
Great article thanks for sharing.
Reading the discussion I'm glad I'm not a lone who find Go things counter intuitive.
This article has helped me to solve the problem when
go getdid not create binary and exited with success.Great Article !
Very helpful! That spares me lot of pain.
Great Article. Please also make a tutorial about Go modules
Thank you, interesting!
This was really useful. Thanks!
Helps me a lot, thank you!
Wonderful post, saves a ton of time, I Signed up to dev.to to like your post and follow :)
Keep inspiring, Thank you