beego mirror
Go to file
astaxie 05e197ffff fix #391 2013-12-19 22:02:25 +08:00
cache #390 should use filepath.Dir instead of path.Dir for. 2013-12-19 19:04:57 +08:00
config beego config module json support get data like key:🔑:key 2013-12-10 18:09:58 +08:00
context recycling memory buffer in context 2013-12-18 22:33:21 +08:00
example beeapi example is broken 2013-12-05 10:29:04 +08:00
httplib Update httplib.go 2013-12-19 16:29:46 +08:00
logs #390 should use filepath.Dir instead of path.Dir for. 2013-12-19 19:04:57 +08:00
middleware when call middle.Exception should set w.WriteHeader first 2013-12-18 21:00:45 +08:00
orm fix bug in postgres 2013-12-17 16:46:14 +08:00
session #369 set maxlifetime, close conn 2013-12-14 23:33:24 +08:00
testing fix #277 2013-11-06 16:51:33 +08:00
toolbox add listconf fix #351 2013-12-15 21:22:50 +08:00
utils move safemap to utils & add many helpful slice function 2013-12-12 22:40:29 +08:00
validation fix MinSize / MaxSize / Length should use Rune Count 2013-10-16 22:49:06 +08:00
.gitignore add git ignore file 2013-06-01 13:31:14 +08:00
README.md fix #391 2013-12-19 22:02:25 +08:00
admin.go filterfunc name 2013-12-15 21:44:58 +08:00
app.go Fixed some typos 2013-12-04 22:27:29 -05:00
beego.go beego 1.0 release 2013-12-19 21:09:45 +08:00
config.go fix: AppPath is wrong. Move BeeLogger to config.go init. 2013-12-19 12:22:30 +08:00
controller.go improve performance change reflect to interface 2013-12-18 21:32:25 +08:00
filter.go fix #315 2013-11-26 16:47:50 +08:00
fiter_test.go dictinct system pkg and third pkg 2013-12-03 21:37:39 +08:00
flash.go fix #206 2013-09-19 23:04:05 +08:00
log.go fix: AppPath is wrong. Move BeeLogger to config.go init. 2013-12-19 12:22:30 +08:00
memzipfile.go Create memzipfile.go 2013-12-14 20:33:12 +02:00
mime.go fix mime bug !! 2013-12-18 00:05:04 +08:00
reload.go change syscall package to os.Kill 2013-12-07 16:52:39 +08:00
router.go _method also must support user defined router 2013-12-19 13:07:43 +08:00
router_test.go fix autorouter params 2013-12-18 10:00:52 +08:00
template.go fix type HasTemplateEXt to HasTemplateExt 2013-12-19 19:52:01 +08:00
template_test.go fix #260 2013-10-30 23:02:53 +08:00
templatefunc.go move utils to utils libs & func move to templatefunc 2013-12-12 22:25:08 +08:00
templatefunc_test.go move utils to utils libs & func move to templatefunc 2013-12-12 22:25:08 +08:00

README.md

beego

Build Status

beego is a Go Framework inspired by tornado and sinatra.

It is a simple & powerful web framework.

More info beego.me

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