Hacker News new | ask | show | jobs
by manojlds 3454 days ago
If I am starting to learn Go and want to try my hands at building a web service, what should I use?
2 comments

For learning purposes, I might suggest the Go implementation of gRPC[1]. As the name implies, it is RPC focused and so doesn't necessarily translate well to a complete web service (HATEOS and such), but still provides some insights into how you might structure your code for that kind of project.

[1] https://github.com/grpc/grpc-go

This is a really good question to ask.