|
You are here |
previnder.com | ||
| | | | |
bartlomiejmika.com
|
|
| | | | | 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. | |
| | | | |
hjr265.me
|
|
| | | | | Signals are standardized messages that an operating system can send your programs. Take Ctrl+C for example. When running a program from the terminal and you hit Ctrl+C, you expect the program to end immediately. How does that work, though? Ctrl+C is a shortcut for the POSIX signal SIGINT. By default, this signal causes your program to be terminated. But this is one of those signals you can handle: You can intercept it and do whatever you please. | |
| | | | |
gist.github.com
|
|
| | | | | Simple Implementation of HTTP Server. GitHub Gist: instantly share code, notes, and snippets. | |
| | | | |
blog.meain.io
|
|
| | | A look into how the context package in Golang works | ||