ThinkGo 是一個輕量級的 Go 語言 MVC 框架,目前支援路由、中介軟體、控制器、請求、響應、Session、檢視、日誌、快取、ORM等 web 框架應該具備的基本功能,ThinkGo致力於讓程式碼簡潔且富於表達力,幫助開發者快速構建一個 Web 應用。
特性
- 簡潔的路由,支援引數注入
- 強大的路由中介軟體,支援
前置
/後置
中介軟體 - Session支援,支援cookie、redis及自定義儲存
- 強大的日誌服務,支援多通道儲存,遵循
RFC 5424
規範。 - 快取,支援memory、redis及自定義快取驅動
- 簡潔的ORM,能使用原生 SQL、流暢的查詢構造器
安裝
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: https://github.com/thinkoner/…
- Gitee: https://gitee.com/thinkgo/thi…