Explore >> Select a destination


You are here

artem.krylysov.com
| | bartlomiejmika.com
3.6 parsecs away

Travel
| | The purpose of this post is to provide instructions on how to setup a simple RESTful API server, in Golang, using only the net/http package and not any other third-party web framework. You will learn how to create REST endpoints within your project that can handle POST, GET, PUT and DELETE HTTP requests. This is the first post in a multi-post series.
| | devopsian.net
2.9 parsecs away

Travel
| | Practical web client unit-testing in Go by mocking the server side, with examples from my first open-source project
| | aarol.dev
2.9 parsecs away

Travel
| | Anyone who has implemented a simple HTTP 1.1 server can tell you that it is a really simple protocol. Basically, it's a text file that has some specific ...
| | grosser.it
21.5 parsecs away

Travel
| Why go does not have nice backtraces Collecting stacktraces is expensive, so the core language will never implement them for everything.If you need your code to be highly performant then consider making a error wrapper that can be turned on/off based on a environment variable. Simple fix import github.com/pkg/errors and use it instead of errors...