Articles by Antony Shikubu
Hexagonal Architecture in Golang: Project Structure, Example & Best Practices
Learn Hexagonal Architecture in Golang with a real-world example, project structure, and best practices. Understand ports and adapters, dependency flow, testing …
How to use Golang as Redis Client?
In this article we assume that you already have a working Redis Server. We have already covered the steps to install and configure Redis on Rcky Linux 9. You
Optimize Golang Docker images [Multi-Stage Build]
You have built your application and it's now time to package and deploy your application to the cloud so that everyone can use it. But how would you package
Master Docker and Golang Usage with Best Practices
Unlock the potential of containerization in your development workflow with our powerful Docker and Golang tutorials. Elevate your coding expertise, conquer …
Create AWS DynamoDB CRUD API in Golang [SOLVED]
Step by step instructions to create a CRUD based REST API using AWS DynamoDB in Golang
Building a CRUD REST API using Redis DB in GO
Go or Golang is an open source programming language developed and supported by Google. It is mostly used to build backend applications where it interacts with
Building a CRUD REST API using Postgresql DB in GO
CRUD is a common abbreviation when it comes to getting started with any framework or programming language. CRUD basically stands for Create, Read, Update and
Building a CRUD gRPC API using Postgresql DB in GO
CRUD is an acronym that refers to operations that are considered necessary to implement in a persistent storage application: Create, Read, Update and Delete.
Use GO Gorilla Mux Like a PRO: Don't be a Rookie!
In this tutorial, we will cover Golang's Gorilla Mux in detail, exploring its setup, RESTful API development, routing techniques, database integration,
Master Golang Gin Module [Explained with Examples]
Explore the transformative power of Golang Gin in web development. This guide offers insightful tips, best practices, and innovative strategies to elevate your …
Create RESTFul CRUD API using Golang Fiber [Tutorial]
Step by Step instructions to create a RESTFul API to perform CRUD Operations using golang fiber with examples
Golang Testing Examples | How to test GO Code?
Step by Step instructions to understand golang testing and write unit tests in go code.
Golang gRPC In-Depth Tutorial [Create Server & Client]
In this Golang gRPC tutorial we will create a proto file, a server and client application
Golang break and continue [Practical Examples]
Different examples to use golang break and continue statement in functions
Golang Write to File, Append & Create File (os.WriteFile, OpenFile Examples)
Learn how to write, append, and create files in Golang using os.WriteFile and os.OpenFile. This practical guide covers file writing, appending data, creating …
