ThinkGo 是一個輕量級的 Go 語言 MVC 框架,目前支持路由、中間件、控制器、請求、響應、Session、視圖、日誌、緩存、ORM等 web 框架應該具有的基本功能,ThinkGo致力於讓代碼簡潔且富於表達力,幫助開發者快速構建一個 Web 應用。git
前置
/後置
中間件RFC 5424
規範。go get github.com/thinkoner/thinkgo
複製代碼
package main
import (
"github.com/thinkoner/thinkgo"
"fmt"
"github.com/thinkoner/thinkgo/router"
"github.com/thinkoner/thinkgo/context"
)
func main() {
app := thinkgo.BootStrap()
app.RegisterRoute(func(route *router.Route) {
route.Get("/", func(req *context.Request) *context.Response {
return thinkgo.Text("Hello ThinkGo !")
})
route.Get("/ping", func(req *context.Request) *context.Response {
return thinkgo.Json(map[string]string{
"message": "pong",
})
})
// Dependency injection
route.Get("/user/{name}", func(req *context.Request, name string) *context.Response {
return thinkgo.Text(fmt.Sprintf("Hello %s !", name))
})
})
// listen and serve on 0.0.0.0:9011
app.Run()
}
複製代碼
ThinkGo 採用 Apache 2.0 開源協議發佈。github
GitHub: github.com/thinkoner/t…web
Gitee: gitee.com/thinkgo/thi…redis