Migrated repository
Go to file
2018-12-17 13:57:15 +08:00
g travis updates 2018-12-17 13:57:15 +08:00
geg add travis/goreport/golint/govet 2018-12-17 13:02:18 +08:00
third add travis/goreport/golint/govet 2018-12-17 13:02:18 +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 2018-12-17 13:57:15 +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 2018-11-30 20:37:28 +08:00
README.MD README updates 2018-12-17 13:28:19 +08:00
RELEASE.MD GF greets you. 2018-12-04 20:28:06 +08:00
TODO.MD new version of gdb developing 2018-12-14 10:09:45 +08:00
version.go VERSION updates 2018-12-17 11:24:58 +08:00

GoFrame

Go Doc Build Status Go Report Code Helper 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

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

License

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