Tag:golang
All the articles or projects with the tag "golang".
How to Configure Go Linters for Improved Code Quality and Efficiency
Posted on:March 9, 2024 at 06:17 PMLearn how to configure Go linters for improved code quality and efficiency. This article covers the importance of Go linters, setting up and configuring golangci-lint, and automating linting in your workflow.
Writing Unit Test in Golang Easily
Posted on:June 2, 2023 at 12:00 PMUnit testing is the most important thing in developing an application, which aims to minimize the occurrence of errors, therefore software developers are obliged to master it. In this article, we will write unit tests in the Golang programming language using the unit testing package provided by Golang.
Build gRPC with Go (golang) Server Streaming API
Posted on:April 2, 2023 at 12:00 PMPreviously, we discussed the gRPC Unary API, you can check it at this link. In this article, I’ll cover a gRPC call using Server Streaming response implementing client and server Go applications.
Build gRPC with Go (golang) Unary API
Posted on:February 2, 2023 at 12:00 PMgRPC is a modern open-source high-performance Remote Procedure Call (RPC) framework that can run in any environment. It can efficiently connect services in and across data centers with pluggable support for load balancing, tracing, health checking, and authentication.
Golang Rest API Boilerplate
Posted on:November 2, 2022 at 12:00 PMGolang Rest API Boilerplate is a starter project for building RESTful API, simple and scalable kit to build production-ready Go API backends.
Gorm Repository Template
Posted on:January 2, 2022 at 12:00 PMGorm Repository Template is a template for creating a repository in golang using gorm as ORM.