English | 简体中文
GF(GoFrame)
is a modular, full-featured and production-ready 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, middleware, logger, template, https, hooks, rewrites and many more features.
go get -u github.com/gogf/gf
suggested using go.mod
:
require github.com/gogf/gf latest
golang version >= 1.10
package main
import (
"github.com/gogf/gf/frame/g"
"github.com/gogf/gf/net/ghttp"
)
func main() {
s := g.Server()
s.BindHandler("/", func(r *ghttp.Request) {
r.Response.Write("Hello World")
})
s.Run()
}
GF
is licensed under the MIT License, 100% free and open-source, forever.
We currently accept donation by Alipay/WechatPay, please note your github/gitee account in your payment bill. If you like GF
, why not buy developer a cup of coffee?