GF(Go Frame)是一款模块化、松耦合、生产级的Go应用开发框架

网友投稿 1083 2022-11-04 21:49:05

GF(Go Frame)是一款模块化、松耦合、生产级的Go应用开发框架

GoFrame

GF(GoFrame) is a modular, loose-coupled, production-ready and most-powerful application development framework of golang. Providing a series of core components and dozens of practical modules, such as: memcache, configure, validator, logging, array/queue/set/map containers, timer/timing tasks, file/memory lock, object pool, database ORM, etc. Supporting web server integrated with router, cookie, session, logger, template, https, hooks, rewrites and many more features.

Installation

go get -u github.com/gogf/gf

or use go.mod:

require github.com/gogf/gf latest

Limitation

golang version >= 1.9.2

Documentation

APIDoc中文文档

Architecture

Quick Start

package mainimport ( "github.com/gogf/gf/g" "github.com/gogf/gf/g/net/ghttp")func main() { s := g.Server() s.BindHandler("/", func(r *ghttp.Request) { r.Response.Write("Hello World") }) s.Run()}

View More..

License

GF is licensed under the MIT License, 100% free and open-source, forever.

Contributors

chenyang351garfieldkwonghailazjohngpibigstarqq1054000800wenzi1wxkj001ymrjqyyyouyixiaozhangjinfuzhaopengmezseeker

Donators

flyke-xuhailazmg91pibigstartiangenglanwxkjzhuhuan12zfan_codes

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:SVG 3D Builder - 该框架旨在使用SVG创建3D模型并提供简洁的API
下一篇:新浪微博爬虫,一个基于Scrapy框架的迷你微博爬虫,Sina Weibo Spider
相关文章