• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Go Libraries and Frameworks

 
Ranch Hand
Posts: 48
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I understand that Go is a language which comes with a comprehensive set of libraries which means you avoid a lot of the dependency issues in other languages. However are there any additional 3rd party libraries or frameworks which you recommend and use?
 
Author
Posts: 14
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The standard library is full of useful packages. When you get outside of these there are just so many good ones. A few I've used:
  • gopkg.in/yaml.v2 - for parsing and writing YAML
  • github.com/urfave/cli - for creating CLI applications
  • google.golang.org/grpc - gRPC has some nice features
  • github.com/golang/protobuf - protocol buffers


  • If anyone else has ones they'd list I'd be curious to see them.
    reply
      Bookmark Topic Watch Topic
    • New Topic