Migrated repository
Go to file
2019-03-08 09:03:32 +08:00
.gitee issue template updates 2019-03-02 00:02:05 +08:00
.github issue template updates 2019-03-02 00:02:05 +08:00
g Merge branch 'master' into develop 2019-03-08 00:21:52 +08:00
geg Merge branch 'master' into develop 2019-03-08 00:21:52 +08:00
third remove sarama-cluster 2019-02-14 19:30:58 +08:00
.gitattributes dev 2017-07-04 18:31:39 +08:00
.gitignore GF greets you. 2018-12-04 20:28:06 +08:00
.travis.yml travis updates 2019-03-08 08:48:53 +08:00
go.mod change gitee.com/johng/gf -> github.com/gogf/gf 2019-02-02 16:18:25 +08:00
LICENSE remove reuseport in ghttp 2019-02-14 15:43:31 +08:00
README_ZH.MD add donate for gitee 2019-02-26 23:39:09 +08:00
README.MD README updates 2019-03-08 09:03:32 +08:00
RELEASE.MD release updates 2019-02-28 10:28:09 +08:00
TODO.MD merge master 2019-03-05 21:07:54 +08:00
version.go version updates 2019-03-04 23:37:01 +08:00

GoFrame

Go Doc Build Status Go Report Code Coverage License Language Release

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()
}

View More..

License

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

Contributors(TOP 10)




Donators