Tag: go

Elkstack Logo

Using Elasticsearch, Logstash, and Kibana with Go applications

Dev

This tutorial demonstrates how to combine the powers of Elasticsearch in the ELK stack with Golang applications.

Michael Okoko
Mar 12, 2021 ⋅ 13 min read
Golang Logo

What’s new in Go 1.16

Dev

Go 1.16, the 17th major version of the Go programming language, has just been released. Here, you can learn everything new in Go 1.16.

Ayooluwa Isaiah
Feb 22, 2021 ⋅ 6 min read
Go Logo

Cryptography in Go today

Dev

Take a look at how cryptography is handled in the Go programming language and what cryptography packages are available today.

Yusuff Faruq
Dec 28, 2020 ⋅ 6 min read
web scraping with Go and Colly

Creating a web crawler in Go with Colly

Dev

Colly is a Go package for writing both web scrapers and crawlers. It is based on Go’s net/HTTP (for network communication) and goquery (which lets you use a “jQuery-like” syntax to target HTML elements).

Michael Okoko
Dec 22, 2020 ⋅ 5 min read
How to use Redis as a database with Go Redis

How to use Redis as a database with go-redis

Dev

In this article, we will explore go-redis and use its pipeline feature to build a leaderboard API.

Michael Okoko
Dec 16, 2020 ⋅ 6 min read
Introduction to ent

An introduction to ent

Dev

In this post, we will explore all the cool features of the Ent framework and build a simple CRUD API that leverages the various functionalities of Ent.

Okewole Oluwatobi
Nov 17, 2020 ⋅ 10 min read
Golang tools for easier web development

The best Go tools for a better web development experience

Dev

These are the most useful Go tools that every web developer should use for a seamless experience when coding in Go.

Okewole Oluwatobi
Oct 13, 2020 ⋅ 3 min read
workingwithgoimages

Working with Go images

Dev

In this tutorial, we will explore how to create such avatars in Go and serve it over HTTP using the chi router.

Michael Okoko
Oct 1, 2020 ⋅ 4 min read
How to build a RESTful API with Docker, PostgreSQL, and go-chi

How to build a RESTful API with Docker, PostgreSQL, and go-chi

Dev

In this tutorial, we will be building a containerized bucket list API using go-chi, PostgreSQL, and Docker.

Michael Okoko
Aug 14, 2020 ⋅ 10 min read

Introduction to RPC using Go and Node

Dev

In this tutorial, you will be learning how to build an RPC server in Go along with an RPC client in Node.js.

Michael Okoh
Jun 25, 2020 ⋅ 4 min read
Creating a web server with Golang

Creating a web server with Golang

Dev

Golang is a great language for creating simple yet efficient web servers and web services. Learn how to create a web server that can accept a GET request and serve a response.

Michiel Mulders
Jun 18, 2020 ⋅ 6 min read
Building An Express-style API In Go With Fiber

Building an Express-style API in Go with Fiber

Dev

See why Fiber, an Express-inspired framework for backend API development, has been steadily gaining traction.

Alexander Nnakwue
Jun 10, 2020 ⋅ 11 min read