ThinkGo 是一个轻量级的 Go 语言 MVC 框架,目前支持路由、中间件、控制器、请求、响应、Session、视图、日志、缓存、ORM等 web 框架应该具备的基本功能,ThinkGo致力于让代码简洁且富于表达力,帮助开发者快速构建一个 Web 应用。
前置
后置
RFC 5424
go get github.com/thinkoner/thinkgo
package main import ( "fmt" "github.com/thinkoner/thinkgo" "github.com/thinkoner/thinkgo/route" "github.com/thinkoner/thinkgo/context" ) func main() { app := thinkgo.BootStrap() app.RegisterRoute(func(route *route.Route) { route.Get("/", func(req *context.Request) thinkgo.Response { return thinkgo.Text("Hello ThinkGo !") }) route.Get("/ping", func(req *context.Request) thinkgo.Response { return thinkgo.Json(map[string]string{ "message": "pong", }) }) // Dependency injection route.Get("/user/{name}", func(req *context.Request, name string) thinkgo.Response { return thinkgo.Text(fmt.Sprintf("Hello %s !", name)) }) }) // listen and serve on 0.0.0.0:9011 app.Run() }
路由
控制器
请求
响应
视图
Session
日志
缓存
ORM
采用 Apache 2.0 协议发布。
GitHub: https://github.com/thinkoner/thinkgo
Gitee: https://gitee.com/thinkgo/thinkgo
有任何问题可以提issues或者PR。
https://github.com/thinkoner/thinkgo/issues
duanpier@gmail.com