Archive of posts with category 'Modules'

Publishing Go Modules Tutorial

How to publish go module? This post discusses how to write and publish modules so other modules can depend on them.

Migrating to Go Modules Tutorial

How to migrate my go project in Go Modules Project? Go projects use a wide variety of dependency management strategies. Vendoring tools such as dep and glide are popular, but...

Using Go Modules Tutorial

What is Go Module? 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...