Exploring Go Modules
Go's strive for simplicity has led to many features that have made Go programs easier to create and consume. This Go program will introduce you to Go's module system and show you how to use them to create and maintain applications and their dependencies.
Go modules improve upon the legacy workspace system by providing a simple method to create reproducible builds and clear rules around working with versioned dependencies. In this Go program, Exploring Go Modules, I will demonstrate the ability to create and maintain module-based applications. First, I will explore what modules are and show the primary workflows used with modules. Next, I will demonstrate how to work with versioned dependencies. Finally, I will demonstrate how to use some less common, but still very useful commands that can simplify the management of your projects. When you run this program, you will have the skills and knowledge of Go modules needed to use them in your next project as well as migrate your existing projects.