Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/peterlamar/go-examples
Collection of Go examples for beginner back end developers
https://github.com/peterlamar/go-examples
beginner example golang learning-by-doing
Last synced: 18 days ago
JSON representation
Collection of Go examples for beginner back end developers
- Host: GitHub
- URL: https://github.com/peterlamar/go-examples
- Owner: peterlamar
- Created: 2015-12-03T13:02:36.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-10-04T23:35:09.000Z (about 4 years ago)
- Last Synced: 2024-08-01T00:43:21.521Z (3 months ago)
- Topics: beginner, example, golang, learning-by-doing
- Language: Go
- Homepage:
- Size: 20.7 MB
- Stars: 45
- Watchers: 5
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# go-workshop
Collection of golang reference examples for teaching and learning golang. These examples assume no experience with backend and avoid complex tooling. [Golang](https://golang.org/) is an excellent language that is simple yet incredibly powerful and fast. Its useful for any new development as it makes devops a breeze (compiles to a single executable) and avoids the tooling and framework issues of other languages (you can get started with just the language and the standard library, vs having to learn tooling and frameworks that are required with many languages).
## Golang
These examples are pure golang exercises
1. [Simple REST api](https://github.com/peterlamar/go-workshop/tree/master/rest-example)
2. [RPC](https://github.com/peterlamar/go-workshop/tree/master/rpc)
3. [Timing](https://github.com/peterlamar/go-workshop/tree/master/timing)
4. [Gin Swagger](https://github.com/peterlamar/go-workshop/tree/master/ginswagger)
5. [Google Drive](https://github.com/peterlamar/go-examples/blob/master/gdrive/readme.md)## Golang + Docker
These integrate with other components such as databases, stood up with docker containers.
1. [Redis](https://github.com/peterlamar/go-workshop/tree/master/redis)
2. [db-cache](https://github.com/peterlamar/go-workshop/tree/master/db-cache)
3. [sqltesting](https://github.com/peterlamar/go-workshop/tree/master/sqltesting)
4. [Hello Casandra](https://github.com/peterlamar/go-workshop/tree/master/hellocassandra)## Golang + Docker + Kubernetes
These interact with Kubernetes as well as Docker. Local [Minikube](https://kubernetes.io/docs/setup/minikube/) or a cloud hosted kubernetes can be used for this exercise.
1. [2-tier Kubernetes web app](https://github.com/peterlamar/go-workshop/tree/master/webdata)
## Misc Links
1. [Effective Go](https://golang.org/doc/effective_go.html) - Basic reference for Golang
1. [Code Review Comments](https://github.com/golang/go/wiki/CodeReviewComments) - Extra supplement comments