2018-11-30 20:38:53 +08:00
<div align=center>
<img src="https://gfer.me/cover.png" width="150"/>
</div>
2018-11-30 20:40:23 +08:00
# GoFrame
2018-11-30 20:37:28 +08:00
`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.
2018-08-06 12:59:08 +08:00
2018-11-30 20:37:28 +08:00
## Installation
```
2018-08-06 23:05:07 +08:00
go get -u gitee.com/johng/gf
```
2018-11-30 20:37:28 +08:00
## Limitation
```
golang version >= 1.9.2
2018-08-06 23:05:07 +08:00
```
2018-11-30 20:37:28 +08:00
## Documentation
* [中文文档](https://gfer.me/)
## Architecture
2018-11-20 23:26:58 +08:00
<div align=center>
<img src="https://gfer.me/images/arch.png"/>
</div>
2018-11-30 20:37:28 +08:00
## Quick Start
2018-11-20 23:26:58 +08:00
2018-04-19 11:08:09 +08:00
```go
package main
2018-05-18 15:55:27 +08:00
import (
"gitee.com/johng/gf/g"
"gitee.com/johng/gf/g/net/ghttp"
)
2018-04-19 11:08:09 +08:00
func main() {
2018-05-18 15:55:27 +08:00
s := g.Server()
s.BindHandler("/", func(r *ghttp.Request) {
2018-08-06 12:57:03 +08:00
r.Response.Write("Hello World")
2018-04-19 11:08:09 +08:00
})
s.Run()
}
2018-11-30 20:37:28 +08:00
```
## License
GF is licensed under the [MIT License](LICENSE), 100% free and open-source.