Tag: go

How to build a blockchain with Go

How to build a blockchain with Go

Dev

This tutorial aims to teach you how blockchains work by guiding you through building one from scratch with Go.

Solomon Esenyi
Mar 30, 2023 ⋅ 6 min read
Using Go Generate To Reduce Boilerplate Code

Using go generate to reduce boilerplate code

Dev

Use the go generate command line tool to simplify code generation and improve code maintainability and reusability.

Ukeje Goodness
Mar 28, 2023 ⋅ 5 min read
Rate Limiting Go Applications

Rate limiting your Go application

Dev

Explore the fundamentals of rate limiting, different types of rate limiting algorithms, and several techniques and libraries for implementing rate limiting in Go applications.

Paul Akinyemi
Mar 20, 2023 ⋅ 7 min read
Best GUI Frameworks for Go

Best GUI frameworks for Go

Dev

This article aims to overview popular third-party GUI development packages in Go and compare each Go framework.

Solomon Esenyi
Mar 10, 2023 ⋅ 6 min read
Build An Internal Error Notification System In Go And Svelte

Build an internal error notification system in Go and Svelte

Dev

Use the Notify Go library to build an internal error notification system that sends notifications to Slack, email, etc., and logs errors.

Abiodun Solomon
Feb 17, 2023 ⋅ 5 min read
An Intro To Routing In Go With Gorilla Mux

An intro to routing in Go with Gorilla Mux

Dev

Build a simple API using the Gorilla Mux package, with its diverse features, as a router for your apps.

Paul Akinyemi
Feb 15, 2023 ⋅ 9 min read
Using Air With Go To Implement Live Reload

Using Air with Go to implement live reload

Dev

Air is a live reloading tool for Go that allows developers to automatically recompile and run their code every time they make changes.

Oluwatomisin Bamimore
Feb 9, 2023 ⋅ 4 min read
Send Emails Go Two Ways

Easy ways to send emails in Go

Dev

Sending emails is a great way to keep in touch with your app users, and knowing how to send emails programmatically is always a useful skill.

Paul Akinyemi
Jan 27, 2023 ⋅ 4 min read
Go Migration Guide: Node.js, Python, and Rust

Go migration guide: Node.js, Python, and Rust

Dev

This article will serve as an overview of Go migration for Rust, Node.js, and the Python programming language.

Solomon Esenyi
Jan 26, 2023 ⋅ 6 min read
Leverage Go Workspaces for Multi-Module Local Development

Leverage Go workspaces for multi-module local development

Dev

In this article, we will explore what Go workspaces are and the various use cases you can explore with the workspaces feature.

Solomon Esenyi
Jan 18, 2023 ⋅ 4 min read
Error Handling Go

Error handling in Go: Best practices

Dev

Tackling errors in Go requires a different approach than the conventional methods in other mainstream programming languages.

Raphael Ugwu
Nov 18, 2022 ⋅ 7 min read
Building A REST API With Golang Using Gin And Gorm

Building a REST API with Golang using Gin and Gorm

Dev

Build a high-performance bookstore RESTful API in Go using Gorm and Gin web framework that provides book data and performs CRUD operations.

Rahman Fadhil
Nov 10, 2022 ⋅ 9 min read