- 简介:A high-productivity web framework for the Go language, modeled on Play! Framework.
上图是Revel的logo,它是一个以Java的Play!框架为蓝本编写的高效的Go语言Web框架。
项目地址:http://robfig.github.com/revel/
源码地址:https://github.com/robfig/revel
- 特点:热编译,简单可选,同步(每个请求都创建自己的goroutine来处理)。
- 快速使用:
- Install Revel into your GOPATH(安装Revel到你的GOPATH)
- Build the Revel command-line tool(编译Revel命令行工具)
- Run the Chat sample application(运行Chat示例程序)
# From the base of your GOPATH…
go get github.com/robfig/revel
go build -o bin/revel github.com/robfig/revel/cmd
bin/revel run github.com/robfig/revel/samples/chat
这一篇,简单介绍了Revel,不得不说,Revel文档还是蛮友好的。
有疑问加站长微信联系(非本文作者)