Book Image

Go Cookbook

By : Aaron Torres
Book Image

Go Cookbook

By: Aaron Torres

Overview of this book

Go (a.k.a. Golang) is a statically-typed programming language first developed at Google. It is derived from C with additional features such as garbage collection, type safety, dynamic-typing capabilities, additional built-in types, and a large standard library. This book takes off where basic tutorials on the language leave off. You can immediately put into practice some of the more advanced concepts and libraries offered by the language while avoiding some of the common mistakes for new Go developers. The book covers basic type and error handling. It explores applications that interact with users, such as websites, command-line tools, or via the file system. It demonstrates how to handle advanced topics such as parallelism, distributed systems, and performance tuning. Lastly, it finishes with reactive and serverless programming in Go.
Table of Contents (14 chapters)

Building a reverse proxy application

In this recipe, we will develop a reverse proxy application. The idea is, by hitting http://localhost:3333 in a browser, all traffic will be forwarded to a configurable host and the responses will be forwarded to your browser. The end result should be https://www.golang.org rendered in a browser through our proxy application.

This can be combined with port forwarding and ssh tunnels in order to securely hit websites through an intermediate server. This recipe will build a reverse proxy from the ground up, but this functionality is also provided by the net/http/httputil package. Using this package, the incoming request can be modified by Director func(*http.Request) and the outgoing response can be modified by ModifyResponse func(*http.Response) error. In addition, there's support for buffering the response.

...