Build Go Modules

Lets learn Golang Modules, how to declare them and how to use them.

Page content

In Go, Modules we need lot of modules, lets create one.

Intro

If you used npm in your Javascript, or Composer in PHP. you know what we are talking about. You probably know modules, they:

  • Modules make life easier, so we dont reinvent the wheel
  • Create them for yourself
  • Updates become easier
  • Sharing functionality

Ingredients