Migrated repository
Go to file
2019-06-05 18:41:11 +08:00
.gitee issue template updates 2019-03-02 00:02:05 +08:00
.github README updates 2019-06-02 13:32:03 +08:00
g fix issue in internal/empty 2019-06-05 18:40:26 +08:00
geg update example 2019-06-05 18:41:11 +08:00
third copy mysql driver to third folder 2019-05-04 23:02:07 +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 edit yml 2019-04-16 22:12:29 +08:00
DONATOR.MD donators updates 2019-06-03 20:34:19 +08:00
go.mod copy mysql driver to third folder 2019-05-04 23:02:07 +08:00
LICENSE remove reuseport in ghttp 2019-02-14 15:43:31 +08:00
README_ZH.MD README updates 2019-06-02 13:32:03 +08:00
README.MD README updates 2019-06-02 13:32:03 +08:00
RELEASE.MD version&release updates 2019-04-09 00:15:48 +08:00
TODO.MD TODO updates 2019-05-29 11:53:10 +08:00
version.go v1.6.17 2019-06-04 23:39:33 +08:00

GoFrame

Go Doc Build Status Go Report Code Coverage Production Ready License

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.10

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.

Donators

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?

Thanks

JetBrains