Build Go with AIX

Introduction Did you ever wanted to program go in AIX ? Now you can. Installing GoLang on AIX First, add /opt/freeware/bin to the beginning of the current PATH. For example: export PATH=/opt/freeware/bin:$PATH Next install Go on AIX (and increase /opt and /var sizes if needed): chfs -a size=+512M /opt chfs -a size=+260M /var dnf install golang Create a sample program Next, let’s create a sample Go Hello World program: package main import "fmt" func main() { fmt....

July 19, 2024 · 1 min · Alex Popescu

Simple Rest API with GO and gin

This is the first part of a series of blog posts about embedding ReactJS front-end app with Go REST API back-end. Let’s start first by creating a REST API in GO and Gin - a web framework for APIs written in GO. Requirements To get started, you need to install Go and Gin on your machine. You can follow the official instructions for installing Go here: https://golang.org/doc/install. REST API Implementation First, let’s initialize the application module with:...

April 12, 2023 · 4 min · Alex Popescu