Golang modules
17 August 2024 (Updated 17 August 2024)
In a nutshell
A module is a collection of Go packages stored in a file tree with a go.mod
file at its root.
The go.mod
file defines the module’s module path, which is also the import parth for the root directory and its dependency requirements (other modules needed for a successful build).
Create a module
Syntax:
Example:
This will create a go.mod
file with the following content:
Install a dependency
Syntax:
Example:
This will add rsc.io/quote
and any of its dependencies to go.mod
:
List available versions of a module
Remove unuse dependencies
Tagged:
Golang