Go to file
Evan Chen 49c5239928 feat: add handle shorthand 2021-11-04 02:09:00 +08:00
test feat: add handle shorthand 2021-11-04 02:09:00 +08:00
README.md feat: add handle shorthand 2021-11-04 02:09:00 +08:00
go.mod update 2021-11-04 01:33:00 +08:00
go.sum update 2021-11-04 01:33:00 +08:00
kserver.go feat: add handle shorthand 2021-11-04 02:09:00 +08:00
net.go update 2021-11-04 01:33:00 +08:00
server.go feat: add handle shorthand 2021-11-04 02:09:00 +08:00
util.go update 2021-11-04 01:33:00 +08:00

README.md

ksrv

A extended http.Server with logging and panic recovery

Examples

package main

import (
	"errors"
	"fmt"
	"net/http"

	"kumoly.io/core/log"
	"kumoly.io/lib/ksrv"
)

func main() {
	log.PROD = false
	mux := http.NewServeMux()
	mux.HandleFunc("/", func(rw http.ResponseWriter, r *http.Request) { rw.Write([]byte("ok")) })
	mux.HandleFunc("/err", func(rw http.ResponseWriter, r *http.Request) { ksrv.Abort(rw, errors.New("small err")) })
	mux.HandleFunc("/panic", func(rw http.ResponseWriter, r *http.Request) { panic(500) })
	mux.HandleFunc("/out", func(rw http.ResponseWriter, r *http.Request) { arr := []int{0, 1}; fmt.Print(arr[9]) })
	log.Info("start")

	err := ksrv.New().Handle(mux).Listen("0.0.0.0:8080").Serve()
	if err != nil {
		panic(err)
	}
}