#Formatting Go code
- go fmt
- go vet
- golint
#Package manager options
- gb
- go get
- git clone
#Testing
- Go Testing
- Testify
- gocheck
- goconvey(this one has a cool website)
#Frameworks in Go
- gorilla/mux
- go-kit
- Gin
- guys in the audience suggest martini, kami, grpc,
- logrs is the logging service
- errgo for error management framework?
#Misc suggestions
- Read the book 'effective go'
- nethttp is a good go package to look at
- someone made a fake http client- nicholasf/fakepoint
- Create a pre-commit hook to ensure formatting is right.