ThinkGo 是一個輕量級的 Go 語言 MVC 框架,目前支持路由犀斋、中間件贝乎、控制器、請求叽粹、響應览效、Session、視圖虫几、日志锤灿、緩存、ORM等 web 框架應該具備的基本功能辆脸,ThinkGo致力于讓代碼簡潔且富于表達力但校,幫助開發(fā)者快速構建一個 Web 應用。
特性
- 簡潔的路由啡氢,支持參數(shù)注入
- 強大的路由中間件始腾,支持
前置
/后置
中間件 - Session支持,支持cookie空执、redis及自定義存儲
- 強大的日志服務浪箭,支持多通道存儲,遵循
RFC 5424
規(guī)范辨绊。 - 緩存奶栖,支持memory、redis及自定義緩存驅(qū)動
- 簡潔的ORM,能使用原生 SQL宣鄙、流暢的查詢構造器
安裝
go get github.com/forgoer/thinkgo
快速開始
package main
import (
"github.com/forgoer/thinkgo"
"fmt"
"github.com/forgoer/thinkgo/router"
"github.com/forgoer/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()
}
協(xié)議
ThinkGo 采用 Apache 2.0 開源協(xié)議發(fā)布袍镀。