Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 lines
1.4 KiB

# 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.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://go.dev/blog/using-go-modules'>Go Modules</BadgeLink>
<BadgeLink badgeText='Watch' href='https://www.youtube.com/watch?v=9cV1KESTJRc'>Go Modules</BadgeLink>
<BadgeLink badgeText='Read' href='https://www.digitalocean.com/community/tutorials/how-to-use-go-modules'>DigitalOcean: How to use Go Modules</BadgeLink>
<BadgeLink badgeText='Watch' href='https://youtu.be/7xSxIwWJ9R4'>Go Modules Explained in 5 Minutes (by Golang Dojo on YouTube)</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://go.dev/doc/tutorial/create-module'>How to create a module in Go</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://go.dev/blog/using-go-modules'>How to use modules in Go</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://jfrog.com/blog/converting-projects-for-go-modules/'>How to modify existing projects to use Go modules</BadgeLink>