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”
Tag Archives: golang
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”