beego mirror
Go to file
astaxie 5b3b6f7f48 add NewFlash func 2013-08-03 18:17:00 +08:00
cache fix #91 2013-07-16 19:05:44 +08:00
docs fix fomat 2013-08-03 18:02:28 +08:00
example add docs about how to write api application 2013-07-09 16:43:03 +08:00
orm zh docs update 2013-08-01 15:52:05 +08:00
session fix #117 2013-07-31 21:36:10 +08:00
validation Support Match validate function for tag 2013-07-28 19:22:09 +08:00
.gitignore add git ignore file 2013-06-01 13:31:14 +08:00
README.md add static global function & add seocms example 2013-06-25 18:49:08 +08:00
beego.go support autorouter 2013-07-27 10:25:14 +08:00
cache.go fix cache bug 2013-03-26 22:31:54 +08:00
config.go support copy requestbody 2013-07-08 23:12:31 +08:00
context.go setcookie set to unique. fix multi setcookie 2013-07-23 21:54:45 +08:00
controller.go beego support flash data 2013-08-03 17:55:53 +08:00
errors.go Fixed bug: error page cannot show correct corresponding status code 2013-07-18 14:42:45 +08:00
flash.go add NewFlash func 2013-08-03 18:17:00 +08:00
log.go I guess write would be better 2013-07-25 19:04:26 +08:00
model.go simplify beego 2012-12-17 22:15:21 +08:00
pprof.go refactor: use switch instead of if/else to select ProfController type 2013-01-03 23:19:13 -07:00
reload.go fix close err 2013-06-26 23:34:32 +08:00
router.go fix router's /path/ 2013-07-30 22:38:01 +08:00
safemap.go add safemap and test 2013-03-28 15:25:49 +08:00
safemap_test.go add safemap and test 2013-03-28 15:25:49 +08:00
template.go Refactor template 2013-08-01 11:57:29 +08:00
template_test.go Add template test 2013-08-01 12:10:56 +08:00
utils.go Refactor ParseForm 2013-07-28 13:51:01 +08:00
utils_test.go Fix utils test fail 2013-07-26 16:56:25 +08:00

README.md

beego

Build Status

beego is a Go Framework which is inspired from tornado and sinatra.

It is a simply & powerful web framework.

Features

  • RESTFul support
  • MVC architecture
  • Session support (store in memory, file, Redis or MySQL)
  • Cache support (store in memory, Redis or Memcache)
  • Global Config
  • Intelligent routing
  • Thread-safe map
  • Friendly displaying of errors
  • Useful template functions

Documentation

English

API

中文文档

LICENSE

beego is licensed under the Apache Licence, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html).

Use case