以下整理一些不错的golang web 框架
- gofiber/fiber
类似nodejs exprss 的web框架 - gin-gonic/gin
类似 Martini 的web 框架,但是性能更好 - go-martini/martini
上边说到的Martini - labstack/echo
- astaxie/beego
比较完备的web 框架 - gobuffalo/buffalo
快速web开发框架 - gorilla/mux
主要是httphandler的提供,但是很强大 - emicklei/go-restful
go rest-ful api 开发 - revel/revel
全栈的web开发框架
说明
golang的web开发框架很多,而且生态很不错,类似的http路由以及handler框架就有好多,好多是否可以解决自己的需求进行选择
参考资料
https://github.com/gofiber/fiber
https://github.com/gin-gonic/gin
https://github.com/go-martini/martini
https://github.com/labstack/echo
https://github.com/astaxie/beego
https://github.com/gobuffalo/buffalo
https://github.com/gorilla/mux
https://github.com/emicklei/go-restful
https://github.com/revel/revel