Migrated repository
Go to file
2019-01-17 16:37:26 +08:00
g update grand.MeetProb, change param type from float64 to float32 2019-01-17 14:20:18 +08:00
geg update grand.MeetProb, change param type from float64 to float32 2019-01-17 14:20:18 +08:00
third up 2019-01-04 15:32:16 +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-01-17 16:37:26 +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 2019-01-02 21:43:17 +08:00
README.MD README updates 2019-01-02 21:43:17 +08:00
RELEASE.MD RELEASE updates 2018-12-25 13:54:36 +08:00
TODO.MD TODO-- 2019-01-13 17:02:32 +08:00
version.go pakage comments updates 2019-01-15 23:27:47 +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(TOP 10)




Donators