Web Programming in Go: Creating a Go Web Server
In the Go programming language (also known as Golang) the net/http library is used for creating web servers that receive requests and send responses. In this course youll learn how to create a Go web server. First youll explore the Go net/http package and how to create a basic Go web server including how to serve files using HTTP. Youll also examine how to work with Go handlers including working with multiple handlers and chaining handlers. Finally youll learn about ServeMux and DefaultServeMux and how to implement routing using the httprouter library.