Hacker News new | ask | show | jobs
by konart 1483 days ago
You are comparing a language to two complete frameworks and a runtime.

Go can be extremely productive but it's definitely not a great choice if you need to create a web app over a weekend.

RoR, Django etc have ready solutions for things like authorization\authentication, administration tools, oauth... Not to mention that 'framework' assumes some sort of contracts so that all thing build for the framework in question can talk to each other.

Go is a good choice if you need to build a custom solution for your needs. Not if you are looking for a set of building blocks you have to configure for your task.

1 comments

Am using Chi and GORM for what it's worth.
I also like to use Chi and don't use any query builders (except for one service I guess) or ORMs.