(Repo: https://github.com/astaxie/build-web-application-with-golang)
Ask HN: Is there a project based book or course on Go for writing web APIs?
21–30 of 34 posts
Re: Ask HN: Is there a project based book or course on Go for writing web APIs?
#22https://vluxe.io/golang-router.html
For an example
Re: Ask HN: Is there a project based book or course on Go for writing web APIs?
#23Earlier quoted context omitted.
I've had a bad experience with Gin and when asking about alternatives in a local Go meetup I was given the advice to use https://github.com/go-chi/chi or gorilla/mux.
Could you go into more detail about this? I'm using Gin currently and would like to avoid any potential landmines if possible.
Re: Ask HN: Is there a project based book or course on Go for writing web APIs?
#24I saw this recommended on HN the other day which covers that ground. Have not done it myself so this is a pointer rather than a recommendation: https://buildsaasappingo.com/
https://store.dominicstpierre.com/build-saas-apps-in-go?coup...
Re: Ask HN: Is there a project based book or course on Go for writing web APIs?
#25I saw this recommended on HN the other day which covers that ground. Have not done it myself so this is a pointer rather than a recommendation: https://buildsaasappingo.com/
Re: Ask HN: Is there a project based book or course on Go for writing web APIs?
#26Re: Ask HN: Is there a project based book or course on Go for writing web APIs?
#27Re: Ask HN: Is there a project based book or course on Go for writing web APIs?
#28Earlier quoted context omitted.
What do you mean you'll never know? Your parent comment said it was pretty good. A single data point is not authoritative, but it shows a pretty solid trend toward "pretty good." You already know the book is pretty good, you just wanted to complain about DRM, I suspect. I hope that's not the case.
Eating rotten carrots is pretty good. A single data point is not authoritative, but my comment shows a pretty solid trend toward "pretty good." I expect you'll run out to go find some rotten carrots to eat now?
Re: Ask HN: Is there a project based book or course on Go for writing web APIs?
#29I saw this recommended on HN the other day which covers that ground. Have not done it myself so this is a pointer rather than a recommendation: https://buildsaasappingo.com/
Re: Ask HN: Is there a project based book or course on Go for writing web APIs?
#30Earlier quoted context omitted.
Could you go into more detail about this? I'm using Gin currently and would like to avoid any potential landmines if possible.
I've used Gin for several small to medium projects without too much difficulty. I think Gin is a good way to learn quickly since its ecosystem introduces you to a lot of the pieces you will need. Personally, I don't do enough web development to grow out of it, since my web related projects are not a primary focus. One thing to note is that Gin's Context is not the standard context.Context, which some find problematic…