CATEGORY

GO

Convert byte slice to io.Reader in Golang [SOLVED]

In this post, we'll examine how to translate a byte slice into an io.Reader in Golang. In Go, a byte slice is a dynamic array (slice) of bytes, which can

By tuannguyen · 3 min read · GO

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

By antonyshikubu · 10 min read · GO

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

By antonyshikubu · 9 min read · GO

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.

By antonyshikubu · 15 min read · GO

GO JWT Authentication and Authorization Tutorial

In this article, I will show how to authenticate a user and authorize access to resources in our application. Authenticate and authorize are two different

By antonyshikubu · 12 min read · GO