Go 语言写的 HTTP 服务器:knight

jopen 10年前

knight 是一个 Go 语言开发,支持自动重载功能的 HTTP 服务器,能够自动检测文件的改变并根据需要重启服务器。用法,基本上你只需要设置一个 watching 路径。

package main    import (      "fmt"      "net/http"      "github.com/fengsp/knight"  )    func handler(w http.ResponseWriter, r *http.Request) {      fmt.Fprintf(w, "It works!")  }    func main() {      http.HandleFunc("/", handler)      // pass your root path in      // pass "" to use current working directory      knight := knight.NewKnight("/private/tmp/test")      knight.ListenAndServe(":8000", nil)  }

项目主页:http://www.open-open.com/lib/view/home/1397359486965