Web Application Create hello directory, cd hello directory mkdir hello cd hello Init module go mod init Download and install go get github.com/rachelos/rungo@latest Create file hello.go package main import "github.com/rachelos/rungo/server/web" func main() { web.Run() } Download required dependencies go mod tidy Build and run go build hello.go ./hello Go to http://localhost:8080