You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

146 lines
10 KiB
Markdown

GoLang Books [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)
9 years ago
====
* [Books](#books)
* [Starter Books](#starter-books)
* [Advanced Books](#advanced-books)
* [Web Development](#web-development)
* [Resources](#resources)
9 years ago
9 years ago
**Books**
====
9 years ago
**Starter Books**
9 years ago
----
9 years ago
###[The Little Go Book](http://openmymind.net/The-Little-Go-Book/) *Free*
<img src="http://openmymind.net/assets/go/title.png" width="120px"/>
The Little Go Book is a free introduction to Google's Go programming language. It's aimed at developers who might not be quite comfortable with the idea of pointers and static typing. It's longer than the other Little books, but hopefully still captures that little feeling.
9 years ago
###[An Introduction to Programming in Go](http://www.golang-book.com/) *Free*
<img src="http://www.golang-book.com/public/img/intro/cover.noatx1.png" width="120px"/>
This book is good resource for absolute beginner programmers who want to learn Golang.
This book is free to [read online](http://www.golang-book.com/) or [pdf form](http://www.golang-book.com/public/pdf/gobook.nqt9j7.pdf) and also available for purchase at Amazon.com in [Kindle](http://www.amazon.com/An-Introduction-Programming-Go-ebook/dp/B0095MCNAO/) or [Paperback](http://www.amazon.com/An-Introduction-Programming-Caleb-Doxsey/dp/1478355824).
9 years ago
###[Go Bootcamp](http://www.golangbootcamp.com/) *Free*
<img src="https://softcover.s3.amazonaws.com/38/GoBootcamp/images/cover-web.png" width="120px"/>
9 years ago
This companion book contains material initially written specifically for this event as well as content from Google & the Go team under Creative Commons Attribution 3.0 License and code licensed under a BSD license.
###[Learning Go](http://www.miek.nl/go) *Free*
A online book to start learning Golang. It features numerous exercises (and answers).
9 years ago
The [markdown source is available on Github](https://github.com/miekg/learninggo).
###[Go in Action](http://www.manning.com/ketelsen/)
9 years ago
<img src="http://goinactionbook.com/img/slider/Ketelsen-GOinA.jpg" width="120px"/>
Go in Action introduces the Go language, guiding you from inquisitive developer to Go guru. The book begins by introducing the unique features and concepts of Go. (We assume you're up to speed with another programming language already, so don't expect to spend a lot of time rehearsing stuff you already know.) Then, you'll get hands-on experience writing real-world applications including web sites and network servers, as well as techniques to manipulate and convert data at speeds that will make your friends jealous. In the final chapters, you'll go in-depth with the language and see the tricks and secrets that the Go masters are using to make their applications perform. For example, you'll learn to use Go's powerful reflection libraries and work with real-world examples of integration with C code.
###[Go Programming Blueprints](https://www.packtpub.com/application-development/go-programming-blueprints)
9 years ago
<img src="http://akamaicovers.oreilly.com/images/9781783988020/lrg.jpg" width="120px"/>
Build real-world, production-ready solutions in Go using cutting-edge technology and techniques.
Intended for seasoned Go programmers who want to put their expertise in Go to use to solve big, real-world, modern problems. With a basic understanding of channels and goroutines, you will hone your skills to build tools and programs that are quick and simple. You need not be an expert in distributed systems or technologies in order to deliver solutions capable of great scale. It is assumed that you are familiar with the basic concepts of Go.
9 years ago
###[Programming in Go: Creating Applications for the 21st Century](http://www.informit.com/store/programming-in-go-creating-applications-for-the-21st-9780321774637)
<img src="http://www.informit.com/ShowCover.aspx?isbn=9780321774637&type=f" width="120px"/>
Programming in Go brings together all the knowledge you need to evaluate Go, think in Go, and write high-performance software with Go. Summerfield presents multiple idiom comparisons showing exactly how Go improves upon older languages, calling special attention to Gos key innovations. Along the way, he explains everything from the absolute basics through Gos lock-free channel-based concurrency and its flexible and unusual duck-typing type-safe approach to object-orientation.
9 years ago
**Advanced Books**
9 years ago
---
9 years ago
9 years ago
###[Test-driven development with Go ](https://leanpub.com/golang-tdd) *Free*
A short guide to Test-driven development in golang. free to [read online](https://leanpub.com/golang-tdd/read).
###[Network programming with Go](http://jan.newmarch.name/go/) *Free*
9 years ago
An e-book on building network applications using the Google Go programming language.free to [read online](http://jan.newmarch.name/go/).
###[Mastering Concurrency in Go](http://shop.oreilly.com/product/9781783983483.do)
9 years ago
<img src="http://akamaicovers.oreilly.com/images/9781783983483/lrg.jpg" width="120px"/>
9 years ago
This book will take you through the history of concurrency, how Go utilizes it, how Go differs from other languages, and the features and structures of Go's concurrency core. Each step of the way, the book will present real, usable examples with detailed descriptions of the methodologies used. By the end, you will feel comfortable designing a safe, data-consistent, high-performance concurrent application in Go.
9 years ago
###[Go in Practice](http://www.manning.com/butcher/)
<img src="http://www.manning.com/butcher/butcher_cover150.jpg" width="120px"/>
Go in Practice guides you through dozens of real-world techniques in key areas like package management, microservice communication, and more. Following a cookbook-style Problem/Solution/Discussion format, this practical handbook builds on the foundational concepts of the Go language and introduces specific strategies you can use in your day-to-day applications. You'll learn techniques for building web services, using Go in the cloud, testing and debugging, routing, network applications, and much more.
###[A Go Developer's Notebook](https://leanpub.com/GoNotebook/)
<img src="https://s3.amazonaws.com/titlepages.leanpub.com/GoNotebook/large?1425551366" width="120px"/>
A developer's exprience in golang.
9 years ago
###[The Go Programming Language Phrasebook](http://www.informit.com/store/go-programming-language-phrasebook-9780321817143)
<img src="http://www.informit.com/ShowCover.aspx?isbn=9780321817143&type=f" width="120px"/>
Tested, easy-to-adapt code examples illuminate every step of Go development, helping you write highly scalable, concurrent software. Youll master Go-specific idioms for working with strings, collections, arrays, error handling, goroutines, slices, maps, channels, numbers, dates, times, files, networking, web apps, the runtime, and more.
9 years ago
**Web Development**
----
###[Building Web Apps with Go](https://www.gitbook.com/book/codegangsta/building-web-apps-with-go/details) *Free*
9 years ago
<img src="https://sm3lir.cloudimage.io/s/width/226/https://www.gitbook.com/cover/book/codegangsta/building-web-apps-with-go.jpg" width="120px"/>
9 years ago
A good resource for start Building Web Apps with Go. Free to [read online](http://codegangsta.gitbooks.io/building-web-apps-with-go/content/), [pdf](https://www.gitbook.com/book/codegangsta/building-web-apps-with-go/details) and [mobi](https://www.gitbook.com/book/codegangsta/building-web-apps-with-go/details) version.
###[Build Web Application with Golang](https://www.gitbook.com/book/astaxie/build-web-application-with-golang/details)
<img src="https://sm3lir.cloudimage.io/s/width/226/https://www.gitbook.com/cover/book/astaxie/build-web-application-with-golang.jpg" width="120px"/>
Another Awesome book for learning Web Development in Golang. Free to [read online](http://astaxie.gitbooks.io/build-web-application-with-golang/content/en/index.html)
9 years ago
###[Mastering Go Web Services ](http://shop.oreilly.com/product/9781783981304.do)
<img src="http://akamaicovers.oreilly.com/images/9781783981304/lrg.jpg" width="120px"/>
9 years ago
This book will take you through the most important aspects of designing, building, and deploying a web service utilizing idiomatic REST practices with a focus on speed, security, and flexibility. You will begin by building your first API in Go using the HTTP package. You will look at designing and building your application including popular design structures like Model-View-Controller. You will also understand methods for deploying code to staging and development. Finally, you will see how the security features in Go can be used for protection against SQL injection, and sensitive data compromise.
###[Level Up Your Web Apps With Go](https://learnable.com/books/level-up-your-web-apps-with-go)
9 years ago
<img src="http://akamaicovers.oreilly.com/images/9780992461294/lrg.jpg" width="120px"/>
This book gives you all you need to use Go in your web applications. Youll learn the basic concepts — language structures, the standard library, and Go tools — then tackle more advanced features like concurrency concepts, testing methodologies, and package structures.
At each step, youll get advice for better coding in Go. Youll see how to structure projects, how to use concurrency effectively, and best practices for testing—as well as many other hints and tips gleaned from real world experience of developing web applications with Go.
9 years ago
###[Go Web Programming](http://www.manning.com/chang/)
<img src="http://www.manning.com/chang/chang_cover150.jpg" width="120px"/>
Go Web Programming teaches you how to build web applications in Go using modern design principles. You'll work through numerous examples that introduce core concepts like processing requests and sending responses, template engines, and data persistence. You'll also dive into more advanced topics, such as concurrency, web application testing and deployment both to barebones servers and PaaS providers.
Resources
====
###[Video: Learn GO Syntax in one video](http://www.youtube.com/watch?v=CF9S4QZuV30)
###[Tutorials: GO by example](https://gobyexample.com/)
Contributing
====
Your contributions are always welcome, just follow [the rules](https://github.com/dariubs/GoBooks/blob/master/CONTRIBUTING.md)!
License
====
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.