2019-02-14 15:43:31 +08:00
2019-02-14 15:43:31 +08:00
2019-02-14 13:38:52 +08:00
2019-02-02 16:42:26 +08:00
dev
2017-07-04 18:31:39 +08:00
2018-12-04 20:28:06 +08:00
2019-02-02 16:54:04 +08:00
2019-02-14 15:43:31 +08:00
2019-02-02 17:55:22 +08:00
2019-02-01 00:04:34 +08:00
2019-02-02 16:22:41 +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 github.com/gogf/gf

or use go.mod

require github.com/gogf/gf latest

Limitation

golang version >= 1.9.2

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.

Contributors(TOP 10)




Donators

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