Show HN: A simple Go web server with logging, tracing, health check
11–20 of 97 posts
Re: Show HN: A simple Go web server with logging, tracing, health check
#12I do not quite see the point of this (other than being an exercise). We already have web server that do "logging, tracing, health check, graceful shutdown." I do not care about zero deps, because I only install them once and the deps are taken care of by the package manager. In my opinion, the Go web server only makes sense as part of a Go application as a whole. But a standalone Go web server does not make much sens…
Re: Show HN: A simple Go web server with logging, tracing, health check
#13So a hundred lines of pure boilerplate hooking up Go standard libraries, assumedly exactly how they were intended to be used. How is this news worthy?
Re: Show HN: A simple Go web server with logging, tracing, health check
#14So a hundred lines of pure boilerplate hooking up Go standard libraries, assumedly exactly how they were intended to be used. How is this news worthy?
Re: Show HN: A simple Go web server with logging, tracing, health check
#15Re: Show HN: A simple Go web server with logging, tracing, health check
#16So a hundred lines of pure boilerplate hooking up Go standard libraries, assumedly exactly how they were intended to be used. How is this news worthy?
Re: Show HN: A simple Go web server with logging, tracing, health check
#17I do not quite see the point of this (other than being an exercise). We already have web server that do "logging, tracing, health check, graceful shutdown." I do not care about zero deps, because I only install them once and the deps are taken care of by the package manager. In my opinion, the Go web server only makes sense as part of a Go application as a whole. But a standalone Go web server does not make much sens…
We should always try to strive to lower dependencies when it makes sense.
Re: Show HN: A simple Go web server with logging, tracing, health check
#18Yea lets ditch everything we learned about modularization in the past 20 years and put everything in one single binary
Re: Show HN: A simple Go web server with logging, tracing, health check
#19Yea lets ditch everything we learned about modularization in the past 20 years and put everything in one single binary
That, and having to handle vendorized dependencies.
Re: Show HN: A simple Go web server with logging, tracing, health check
#20Isn't Caddy written in Go? How is this different?