4

Anybody here who writes backends in golang? The preferred way to do so in Go is to use the standard libraries. Does it involve a lot of boilerplate? Are there better options?

Comments
  • 4
    Not very much boilerplate at all. The best way probably is to use the standard libraries, but there are other frameworks you could use
  • 1
  • 1
    There's alittle bit of boilerplate. Gorilla mux is the best option cause it eliminates most of it. Other than that there's a package called alice that helps chain middleware which should get rid of the rest.
  • 0
    @PerfectAsshole thanks! I'll check it out
Add Comment