Tag: go

Exploring Structs And Interfaces In Go

Exploring structs and interfaces in Go

Dev

Learn about go’s type system through the technical implementation of the struct and interface types in Go.

Alexander Nnakwue
Jan 14, 2022 ⋅ 15 min read
Gqlgen Faster GraphQL Server

gqlgen: Build a faster GraphQL server

Dev

Explore gqlgen, which allows you to easily write GraphQL APIs using Go, and learn how to get started by building a simple to-do list application.

Alex Merced
Jan 6, 2022 ⋅ 5 min read
Go Dependency Injection With Wire

Go dependency injection with Wire

Dev

Use Wire to generate source code at compile time as well as implement dependency injection.

Emmanuel John
Jan 5, 2022 ⋅ 3 min read
PWA Create Go App

Creating a PWA with Create Go App

Dev

Explore Create Go App, a CLI similar to the popular Create React App, by building a PWA from scratch.

Emmanuel Etukudo
Jan 3, 2022 ⋅ 4 min read
Building a Web Scraper in Go with Colly

Building a web scraper in Go with Colly

Dev

Learn to use the Go package Colly to build a basic web scraper that gets product information and saves the data to a JSON file.

Emmanuel John
Dec 24, 2021 ⋅ 6 min read
Configuring the Go HTTP Client

Configuring the Go HTTP client

Dev

Walk through a simple procedure to configure and establish a connection between client and server and make HTTP requests in Go.

Ikeh Akinyemi
Dec 10, 2021 ⋅ 4 min read
Concurrency Patterns In Go: WaitGroups And Goroutines

Concurrency patterns in Golang: WaitGroups and Goroutines

Dev

Explore goroutines, communication between goroutines using channels, and syncing goroutines using WaitGroups.

Oluwatomisin Bamimore
Dec 3, 2021 ⋅ 4 min read
How to Make an HTTP POST Request With a JSON Body in Go

How to make an HTTP POST request with a JSON body in Go

Dev

Learn a simple procedure for making an HTTP POST request with a JSON body to a simple web server written in Go.

Ikeh Akinyemi
Nov 30, 2021 ⋅ 3 min read
Charts In Go Echarts

Visualizing data in Golang with go-echarts

Dev

Learn how to set up and install the go-echarts package, then build different charts like a bar chart, line chart, pie chart, and a word cloud.

Mohit Khare
Nov 19, 2021 ⋅ 4 min read
Using JSON in Go: A guide with examples

Using JSON in Go: A guide with examples

Dev

JSON is one of the most-used formats for storing data. In this guide, learn how to work with JSON in Go using the encoding/json package.

Shalitha Suranga
Nov 17, 2021 ⋅ 10 min read
CRUD App with Golang and CockroachDB

CRUD with Golang and CockroachDB

Dev

Learn how to use Golang to perform Create, Read, Update, and Delete (CRUD) operations against an equally popular database, CockroachDB.

Emmanuel John
Nov 16, 2021 ⋅ 10 min read
Using An SQL Database In Golang

Using an SQL database in Golang

Dev

Learn how to use Golang with the Microsoft SQL Server database to build a console-based reminder application.

Nwani Victory
Nov 3, 2021 ⋅ 11 min read