Posted on: Written by: K-Sato
⚠️ This article was posted over 2 years ago. The information might be outdated. ⚠️

Table of Contents

Introduction

Some cool resources for learning Go.

Creating an API client in Go

Stuff created in Go

Building a web app in Go

Web Scraping in GO

Rails like framework called buffalo

Create an API with gin

Create a CLI tool

How to use the cli you created

// Run build
$ go build main.go
// Move it under /usr/local/bin
$ cp my-cli /usr/local/bin
// Check if it's working
$ my-cli -y "Hello"

or

// Install our command to the $GOPATH/bin directory:
$ go install
// Check if it's working
$ my-cli -y "Hello"

Packages

Clean Architecture in Go

About the author

I am a web-developer based somewhere on earth. I primarily code in TypeScript, Go and Ruby at work. React, RoR and Gin are my go-to Frameworks.