Slide 30
Slide 30 text
© ZOZO, Inc.
30
Goを用いたWebサーバーの実装
package main
import (
"io"
"log"
"net/http"
)
func main() {
// Hello world, the web server
helloHandler := func(w http.ResponseWriter, req *http.Request) {
io.WriteString(w, "Hello, world!\n")
}
http.HandleFunc("/hello", helloHandler)
log.Fatal(http.ListenAndServe(":8080", nil))
}
https://pkg.go.dev/net/http#example-ListenAndServe
http.ListenAnd erve(addr string, handler http.Handler) でサーバーが起動する
Goを使った開発におけるテクニック