Introduction to HTTP with Golang (HTTP Part 1)



Introduction to HTTP with Golang (HTTP Part 1)

Introduction to HTTP with Golang (HTTP Part 1)

Let’s take a look at the HTTP protocol and how to easily setup web servers using Golang.

Contents
—————
– Understanding the HTTP protocol
– Creating simple HTTP webservers with Golang and serving HTTP requests.
– Understanding and using the CRUD pattern.

Code
———
The code examples in the video are here; https://github.com/conceptswithkrishna/goexamples

References
——————
1. Golang Default HTTP package: https://pkg.go.dev/net/http#ServeMux
2. Gorilla/mux package: https://pkg.go.dev/github.com/gorilla/mux
3. HTTP Status codes: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status
4. HTTP Content-Type header: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Type

Comments are closed.