1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-02 11:33:27 +00:00
beego mirror
Go to file
2013-08-11 22:27:45 +08:00
cache fix #132 2013-08-09 22:19:05 +08:00
docs add httplib support like http.client 2013-08-03 22:20:09 +08:00
example add docs about how to write api application 2013-07-09 16:43:03 +08:00
httplib move httplib from beego to beego/httplib safemap support get all items 2013-08-06 16:13:45 +08:00
orm orm add postgres support 2013-08-11 22:27:45 +08:00
session fix #138 2013-08-09 23:41:03 +08:00
validation Change tag valid func default key 2013-08-06 23:15:20 +08:00
.gitignore add git ignore file 2013-06-01 13:31:14 +08:00
beego.go add XSRFExpire 2013-08-07 11:22:23 +08:00
cache.go Added Items() to return items from BeeCache 2013-08-05 00:47:37 -05:00
config.go add XSRFExpire 2013-08-07 11:22:23 +08:00
context.go setcookie set to unique. fix multi setcookie 2013-07-23 21:54:45 +08:00
controller.go fix #145 2013-08-10 23:58:25 +08:00
errors.go Fixed bug: error page cannot show correct corresponding status code 2013-07-18 14:42:45 +08:00
flash.go fix it , 2013-08-03 18:18:09 +08:00
log.go I guess write would be better 2013-07-25 19:04:26 +08:00
pprof.go refactor: use switch instead of if/else to select ProfController type 2013-01-03 23:19:13 -07:00
README.md Update README.md 2013-08-11 13:26:28 +08:00
reload.go fix close err 2013-06-26 23:34:32 +08:00
router.go fix #144 2013-08-10 21:44:27 +08:00
safemap_test.go add safemap and test 2013-03-28 15:25:49 +08:00
safemap.go move httplib from beego to beego/httplib safemap support get all items 2013-08-06 16:13:45 +08:00
template_test.go Add template test 2013-08-01 12:10:56 +08:00
template.go Add renderform template function 2013-08-10 16:33:46 +08:00
utils_test.go Add renderform template function 2013-08-10 16:33:46 +08:00
utils.go Add renderform template function 2013-08-10 16:33:46 +08:00

beego

Build Status

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

It is a simply & 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