Guide

  • Published on
    Lambda is a cloud service that allows you to run your code without having to provision or manage servers. AWS Lambda supports various programming languages, including Go. In this tutorial, we will walk you through the steps to test your Go AWS Lambda function locally and deploy it to AWS.
  • Published on
    Chromedp is an open-source Golang library that provides a high-level API to control Chrome or Chromium over the DevTools Protocol. With chromedp, web scraping can be done in a more efficient and user-friendly way.
  • Published on
    Goose is a database migration tool built specifically for Golang projects. It provides a simple way to manage SQL migrations, with support for multiple databases including MySQL, Postgres, and SQLite.
  • Published on
    Test table is a way of testing Go functions with different input parameters and expected outputs. It is a convenient way of writing tests for functions with multiple test cases.
  • Published on
    An interface in Golang is a collection of method signatures defined by the user. It is a way to achieve polymorphism in Golang.
  • Published on
    Channels are an essential feature of the Go programming language. They provide a way for different goroutines to communicate and synchronize with each other. In this article, we will discuss the basics of channels and how they can be used effectively in Go programs.