Ask HN: What do you think is the current best Go webframework and why?
1–10 of 18 posts
Re: Ask HN: What do you think is the current best Go webframework and why?
#2Re: Ask HN: What do you think is the current best Go webframework and why?
#3Re: Ask HN: What do you think is the current best Go webframework and why?
#4Re: Ask HN: What do you think is the current best Go webframework and why?
#5I prefer just using the standard library with a muxer like gorilla/mux.
Re: Ask HN: What do you think is the current best Go webframework and why?
#6I prefer just using the standard library with a muxer like gorilla/mux.
Re: Ask HN: What do you think is the current best Go webframework and why?
#7Really really close to flagging this. There is no "best X" for any X. At least not without adding lots of context (and then it gets boring for other people since these details probably are not interesting for them).
Re: Ask HN: What do you think is the current best Go webframework and why?
#8I prefer just using the standard library with a muxer like gorilla/mux.
Because the more fully kithensunk ones are worse/bad/negative or just because you keep it simple?
Re: Ask HN: What do you think is the current best Go webframework and why?
#9Really really close to flagging this. There is no "best X" for any X. At least not without adding lots of context (and then it gets boring for other people since these details probably are not interesting for them).
If I am starting to learn Go and want to try my hands at building a web service, what should I use?
Re: Ask HN: What do you think is the current best Go webframework and why?
#10Start with a feature list of what you require from the framework.
- Validation
- Routing
- Security
- Filtering
- Templating
- Data binding
- Component reuse
...