Skip to content

Golang

Language features and implementation details

Best practices

Implementation articles

  • Error handling in Upspin: An interesting article by the legendary Rob Pike about how to use custom error types to provide more meaningful messages in an app with many components.

Videos

Important third party libraries

  • GORM: A popular Go ORM. Very well written usage documentation.
  • CLI (Command line libraries):
    • urfave CLI : Formerly codegangsta/cli. Man page like extensive help formatting.
    • Cobra : Integrates with Viper , a config management library. Also uses pflag , a more posix compliant flag library than the standard library one.