简单易用的 Go Web 微框架

IIInsomnia · · 1388 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

[yiigo](https://github.com/IIInsomnia/yiigo) === 简单易用的 Go Web 微框架 ## 特点 - 支持多 [MySQL](https://github.com/jmoiron/sqlx) 连接 - 支持多 [mongo](http://labix.org/mgo) 连接 - 支持多 [redis](https://github.com/gomodule/redigo) 连接 - 采用 [zap](https://github.com/uber-go/zap) 日志记录 - 采用 [toml](https://github.com/pelletier/go-toml) 配置文件 - 采用 [glide](https://glide.sh) 管理依赖包 - 支持 [gomail](https://github.com/go-gomail/gomail) 邮件发送 - 支持 [session](http://www.gorillatoolkit.org/pkg/sessions) 存取 - 支持爬虫模拟登录 ## 获取 ```shell # glide glide init glide get github.com/iiinsomnia/yiigo # go get go get github.com/iiinsomnia/yiigo ``` ## 使用 #### 1、import yiigo ```go package main import "github.com/iiinsomnia/yiigo" func main() { // 启用 mysql、mongo、redis err := yiigo.Bootstrap(true, true, true) if err != nil { yiigo.Logger.Panic(err.Error()) } // coding... } ``` #### 2、resolve dependencies ```shell # 获取 yiigo 所需依赖包 glide update ``` ## 文档 - [API Reference](https://godoc.org/github.com/IIInsomnia/yiigo) - [Example](https://github.com/IIInsomnia/yiigo-example) ## 说明 - 在 `main.go` 所在目录创建 `env.toml` 配置文件,具体配置可以参考 `env.toml.example` - `MySQL`、`mongo`、`redis` 多连接配置参考 `env.toml.example` 中的多数据库配置部分(注释部分) - `golang.org` 上 `go get` 不下来的库,可以在这里[获取](https://github.com/golang) - 如爬虫不需要模拟登录,则只需要使用 [goquery](https://github.com/PuerkitoBio/goquery) 即可 **Enjoy ????**

有疑问加站长微信联系(非本文作者))

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

1388 次点击  ∙  1 赞  
加入收藏 微博
2 回复  |  直到 2018-08-01 13:30:46
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传