React Gin Blog (3/19): Add React frontend

With first API route set, let’s add React frontend before continuing further. Covering React is out of this tutorial’s scope, but there are a lot of React development guides over the Internet that you can check. Even though i will not go into details about React implementation, i will show you how to setup ReactContinue reading “React Gin Blog (3/19): Add React frontend”

React Gin Blog (2/19): Starting Gin server

First we need to give our Web App a name. We will be making a simple blog, so let’s call it RGB (React Gin Blog). We will start by making project root directory inside of ~/go/src/ and making it our current working directory. Our first dependency is Gin framework. You can download it by running go get github.com/gin-gonic/gin if you don’t have it already. Before writing our first backend source file, we need to crate go.mod file in project root directory needed by Golang to find and import required dependencies. Content of thatContinue reading “React Gin Blog (2/19): Starting Gin server”

React Gin Blog (1/19): Golang and React Web App guide

This guide will show you how to build full stack Web App from scratch using Go programming language, Gin and React frameworks. Go (or sometimes called GoLang) is an open source programming language developed by Google. More info, as well as download link can be found on official web page. Gin is lightweight but high-performanceContinue reading “React Gin Blog (1/19): Golang and React Web App guide”