Contents
Roadmap info from roadmap website
Modules
Go modules are a group of related packages that are versioned and distributed together. They specify the requirements of our project, list all the required dependencies, and help us keep track of the specific versions of installed dependencies.
Modules are identified by a module path that is declared in the first line of the go.mod file in our project.
Visit the following resources to learn more:
- @official@Go Modules
- @video@Go Modules
- @article@DigitalOcean: How to use Go Modules
- @video@Go Modules Explained in 5 Minutes (by Golang Dojo on YouTube)
- @official@How to create a module in Go
- @official@How to use modules in Go
- @article@How to modify existing projects to use Go modules
- @feed@Explore top posts about Golang
Developing Go code with modules
- Creating a new module.
- Adding a dependency.
- Upgrading dependencies.
- Adding a dependency on a new major version.
- Upgrading a dependency to a new major version.
- Removing unused dependencies.