John 858b010caa up
2019-01-03 19:11:54 +08:00
up
2019-01-03 19:11:54 +08:00
up
2019-01-03 19:11:54 +08:00
2019-01-02 12:42:36 +08:00
dev
2017-07-04 18:31:39 +08:00
2018-12-04 20:28:06 +08:00
2018-12-17 13:32:35 +08:00
2018-12-04 20:28:06 +08:00
2018-12-27 20:47:13 +08:00
up
2018-12-28 21:44:36 +08:00
2018-12-25 13:54:36 +08:00
up
2019-01-03 19:11:54 +08:00
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

Description
No description provided
Readme MIT 34 MiB
Languages
GO 100%