Migrated repository
Go to file
2019-01-01 19:43:31 +08:00
g up 2019-01-01 19:43:31 +08:00
geg up 2019-01-01 19:43:31 +08:00
third up 2018-12-30 11:08: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 fix issue of grand.intn in x86 arch; add router group feature for WebServer 2018-12-20 21:04:43 +08:00
go.mod travis updates 2018-12-17 13:32:35 +08:00
LICENSE GF greets you. 2018-12-04 20:28:06 +08:00
README_ZH.MD README updates, TODO++ 2018-12-27 20:47:13 +08:00
README.MD up 2018-12-28 21:44:36 +08:00
RELEASE.MD RELEASE updates 2018-12-25 13:54:36 +08:00
TODO.MD up 2019-01-01 19:43:31 +08:00
version.go VERSION updates 2018-12-31 17:56:06 +08:00

GoFrame

Go Doc Build Status Go Report Documents License Language Release

GF(GoFrame) is a modular, lightweight, loosely coupled, high performance application development framework written in Go. Supporting graceful server, hot updates, multi-domain, multi-port, multi-service, HTTP/HTTPS, dynamic/hook routing and many more features. Providing a series of core components and dozens of practical modules.

Installation

go get -u gitee.com/johng/gf

or use go.mod

require gitee.com/johng/gf latest

Limitation

golang version >= 1.9.2

Documentation

Architecture

Quick Start

package main

import (
    "gitee.com/johng/gf/g"
    "gitee.com/johng/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




Donators