In this video, we are going to be building a basic web server in Go that we will expand upon in future videos. To do this, we'll make use of the standard library, most notably the net/http package. This package received major improvements to its routing functionality in patch 1.22. Learn more about how to create a web server in Go in this educational video.
#go #golang #standardlibrary #stdlib #http #server #coding #programming #computerscience
🔗 Resources
Go Installation - https://go.dev/doc/install
http package - https://pkg.go.dev/net/http
embed package - https://pkg.go.dev/embed
📚 Topics Covered:
- Advantages of Go
- Project Setup
- Creating Router with NewServeMux
- Running Server with ListenAndServe