Build Web Apps with Go (BWAG)
Details
WWG and GoBridge are joining forces to teach this BWAG course in Go!
- This workshop is aimed for anyone that identifies themselves as women and gender minorities and want to build web apps with Go.
Programme
Welcome to Building Web Apps with Go! If you are reading this then you have just started your journey from noob to pro. No seriously, web programming in Go is so fun and easy that you won't even notice how much information you are learning along the way!
Keep in mind that there are still portions of this book that are incomplete and need some love. The beauty of open source publishing is that I can give you an incomplete book and it is still of value to you.
Before we get into all the nitty gritty details, let's start with some ground rules:
Prerequisites
To keep this tutorial small and focused, I'm assuming that you are prepared in the following ways:
• You have installed the Go Programming Language (https://golang.org/).
• You have setup a `GOPATH` by following the How to Write Go Code (https://golang.org/doc/code.html#Organization) tutorial.
• You are somewhat familiar with the basics of Go. (The Go Tour (https://tour.golang.org/welcome/1) is a pretty good place to start).
• You have installed all the required packages listed below.
• You have installed Docker (https://docs.docker.com/engine/installation/).
Required Packages
For the most part we will be using the built in packages from the standard library to build out our web apps. Certain lessons such as Databases, Middleware and URL Routing will require a third party package. Here is a list of all the go packages you will need to install before starting:
- httprouter (https://github.com/julienschmidt/httprouter), A high performance HTTP request router that scales well (github.com/julienschmidt/httprouter)
- Negroni (https://github.com/codegangsta/negroni), Idiomatic HTTP Middleware (github.com/codegangsta/negroni)
- Black Friday (https://github.com/russross/blackfriday), a markdown processor (github.com/russross/blackfriday)
- Render (https://github.com/unrolled/render/tree/v1), Easy rendering for JSON, XML, and HTML (gopkg.in/unrolled/render.v1)
- SQLite3 (https://github.com/mattn/go-sqlite3), sqlite3 driver for go (github.com/mattn/go-sqlite3)
You can install (or update) these packages by running the following command in your console:
go get -u
For instance, if you wish to install Negroni, the following command would be:
go get -u github.com/codegangsta/negroni
Description
This is a BYOL event, please make sure to Bring Your Own Laptop with you for this workshop.
(Please note RSVPs should be done via BridgeTroll - see link below)
--------------------------------------------------------------------------
RSVP HERE --> https://www.bridgetroll.org/events/351
Food and Drinks
It would be provided through the event.
Childcare
Unfortunately, we can not offer childcare for this workshop.




