gf/README.MD

81 lines
2.9 KiB
Plaintext
Raw Normal View History

2018-01-11 23:33:05 +08:00
<div align=center>
<img src="http://cover.kancloud.cn/johng/gf" width="200"/>
2018-01-11 23:28:18 +08:00
</div>
2018-02-26 17:22:38 +08:00
<div align=center>
2018-02-26 17:23:18 +08:00
<a href="https://godoc.org/github.com/johng-cn/gf" target="_blank">
2018-02-26 17:22:38 +08:00
<img src="https://godoc.org/github.com/johng-cn/gf?status.svg"/>
</a>
</div>
2018-02-26 17:15:36 +08:00
2018-01-11 23:28:18 +08:00
## 介绍
gf(Go Frame)是一款为Web服务及网络服务开发设计的模块化、低耦合、轻量级的Go语言开发框架。
实现了通用的HTTP/TCP/UDP Server并提供了Web服务开发的系列核心组件
2018-01-18 22:14:12 +08:00
包括MVC、Cookie、Session、模板引擎、路由控制、配置管理、数据校验、数据库操作(ORM)等等,
并且提供了数十个实用开发模块包括缓存模块、日志模块、JSON模块、命令行模块、二进制模块、环境变量模块、并发安全容器、Goroutine池等等。
2018-01-11 23:28:18 +08:00
2018-01-27 09:20:28 +08:00
gf是开源的免费的基于MIT协议进行分发开源项目地址(gitee与github仓库保持实时同步)
1. Gitee
2018-01-27 09:22:07 +08:00
2018-01-27 09:20:28 +08:00
https://gitee.com/johng/gf
2018-01-27 09:22:07 +08:00
2018-01-27 09:20:28 +08:00
2. Github
2018-01-27 09:22:07 +08:00
2018-01-27 09:20:28 +08:00
https://github.com/johng-cn/gf
2018-01-12 17:37:17 +08:00
使用中有任何问题/建议欢迎加入技术QQ群交流116707870
2018-01-12 13:10:37 +08:00
## 安装
2017-11-22 16:39:21 +08:00
```
2017-11-23 10:29:50 +08:00
go get -u gitee.com/johng/gf
2017-12-31 14:44:48 +08:00
```
2017-11-22 16:39:21 +08:00
## 使用
2017-11-23 10:23:23 +08:00
```go
2018-01-05 17:45:16 +08:00
package main
2017-12-31 15:13:35 +08:00
2018-01-05 17:45:16 +08:00
import "gitee.com/johng/gf/g/net/ghttp"
2017-12-31 15:13:35 +08:00
2018-01-05 17:45:16 +08:00
func main() {
2018-01-18 22:14:12 +08:00
s := ghttp.GetServer()
s.BindHandler("/", func(r *ghttp.Request){
2018-01-05 17:45:16 +08:00
r.Response.WriteString("Hello World!")
})
2018-01-18 22:14:12 +08:00
s.Run()
2018-01-04 11:59:35 +08:00
}
```
2018-01-05 17:45:16 +08:00
## 文档
2018-01-29 17:07:30 +08:00
* [框架介绍](http://gf.johng.cn/494364)
* [加入团队](http://gf.johng.cn/512841)
* [Web服务开发](http://gf.johng.cn/494647)
* [WebServer](http://gf.johng.cn/494366)
* [MVC模式](http://gf.johng.cn/494367)
* [服务注册](http://gf.johng.cn/494368)
* [Cookie](http://gf.johng.cn/494372)
* [Session](http://gf.johng.cn/494373)
* [输入输出](http://gf.johng.cn/494374)
* [路由控制](http://gf.johng.cn/49437)
* [配置管理](http://gf.johng.cn/494376)
* [单例管理](http://gf.johng.cn/494377)
* [数据校验](http://gf.johng.cn/494378)
* [模板引擎](http://gf.johng.cn/494379)
* [数据库操作](http://gf.johng.cn/494380)
* [网络服务开发](http://gf.johng.cn/494648)
* [TCPServer](http://gf.johng.cn/494382)
* [UDPServer](http://gf.johng.cn/494383)
* [功能模块设计](http://gf.johng.cn/494384)
* [缓存模块](http://gf.johng.cn/494385)
* [日志模块](http://gf.johng.cn/494386)
* [时间模块](http://gf.johng.cn/494387)
* [JSON模块](http://gf.johng.cn/494388)
* [命令行模块](http://gf.johng.cn/494389)
* [二进制模块](http://gf.johng.cn/500342)
* [HTTP客户端](http://gf.johng.cn/499674)
* [Goroutine池](http://gf.johng.cn/504458)
* [数据编码解析](http://gf.johng.cn/511393)
* [环境变量模块](http://gf.johng.cn/494390)
* [文件管理模块](http://gf.johng.cn/494391)
* [并发安全容器](http://gf.johng.cn/494392)
* [通用编码模块](http://gf.johng.cn/494393)
* [其他模块介绍](http://gf.johng.cn/494394)