What is the purpose of a module?

Modules in Go are being used to keep track of all the dependencies needed for your code to run. A module is defined by its go.mod file.


Questions

Terms

How do you name a module in Go?
What is the relationship between packages and modules?

References