⚠️ This article was posted over 2 years ago. The information might be outdated. ⚠️
Table of Contents
- Introduction
- 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
- Packages
- Clean Architecture in Go
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
- Building a Web App With Go, Gin and React - DEV Community 👩💻👨💻
- Build RESTful API service in golang using gin-gonic framework
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"