# GoFrame [![Go Doc](https://godoc.org/github.com/gogf/gf?status.svg)](https://godoc.org/github.com/gogf/gf) [![Build Status](https://travis-ci.org/gogf/gf.svg?branch=master)](https://travis-ci.org/gogf/gf) [![Go Report](https://goreportcard.com/badge/github.com/gogf/gf)](https://goreportcard.com/report/github.com/gogf/gf) [![Documents](https://img.shields.io/badge/docs-100%25-green.svg)](https://goframe.org) [![License](https://img.shields.io/github/license/gogf/gf.svg?style=flat)](https://github.com/gogf/gf) [![Language](https://img.shields.io/badge/language-go-blue.svg)](https://github.com/gogf/gf) [![Release](https://img.shields.io/github/release/gogf/gf.svg?style=flat)](https://github.com/gogf/gf/releases) `GF(GoFrame)` is a modular, loose-coupled and production-ready application development framework written in Go. Providing a series of core components and dozens of practical modules, such as: cache, logging, array/queue/set/map, timer/timing tasks, file/memory lock, object pool, validator, database ORM, etc. Supporting web server with graceful server, hot updates, multi-domain, multi-port, multi-service, HTTP/HTTPS, dynamic/hook routing, rewrite rules and many more features. # 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 * [GoDoc](https://godoc.org/github.com/gogf/gf) * [中文文档](https://goframe.org) # Architecture
# Quick Start ```go 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..](https://goframe.org/start/index) # License `GF` is licensed under the [MIT License](LICENSE), 100% free and open-source, forever. # Contributors(TOP 10)


# Donators