Latest article
Building APIs in Go: A quick sketch
First of all, welcome to my first blog post. Today I want to help you build your first RESTful API in Golang! The first two sections will help you getting started with Go, you may be able to skip these steps. Installing the go command line tool Before you can start writing Go code, you need the go command line tool that bundles the compiler and a bunch of other development tools for you. Just visit golang.org/dl/ to fetch the latest version and install it on your workstation. Be sure to yet your $GOPATH correctly! ...