探索flutter框架开发的app在移动应用市场的潜力与挑战
1302
2022-10-22
ThinkGo- 轻量级的 Go 语言 MVC 框架
ThinkGo
ThinkGo 是一个轻量级的 Go 语言 MVC框架,目前支持路由、中间件、控制器、请求、响应、Session、视图、日志、缓存、ORM等web 框架应该具备的基本功能,ThinkGo致力于让代码简洁且富于表达力,帮助开发者快速构建一个 Web 应用。
特性
简洁的路由,支持参数注入强大的路由中间件,支持前置/后置中间件Session支持,支持cookie、redis及自定义存储强大的日志服务,支持多通道存储,遵循RFC 5424规范。缓存,支持memory、redis及自定义缓存驱动简洁的ORM,能使用原生 SQL、流畅的查询构造器
安装
go get github.com/thinkoner/thinkgo
快速开始
package mainimport ( "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/issuesduanpier@gmail.com
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~