mirror of
https://gitee.com/johng/gf.git
synced 2024-11-30 03:07:45 +08:00
Migrated repository
.gitee | ||
.github | ||
g | ||
geg | ||
third | ||
.gitattributes | ||
.gitignore | ||
.travis.yml | ||
go.mod | ||
LICENSE | ||
README_ZH.MD | ||
README.MD | ||
RELEASE.MD | ||
TODO.MD | ||
version.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
Architecture
Quick Start
package main
import (
"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()
}
License
GF
is licensed under the MIT License, 100% free and open-source, forever.
Contributors
- chenyang351
- garfieldkwong
- hailaz
- johng
- pibigstar
- qq1054000800
- wenzi1
- wxkj001
- ymrjqyy
- youyixiao
- zhangjinfu
- zhaopengme
- zseeker