1
0
mirror of https://github.com/astaxie/beego.git synced 2025-01-22 14:57:13 +00:00
wulove 877b5c233e 增加编译模版函数BuildTemplate可变参数,使之支持单个或多个模版的编译,同时针对开发模式,每个请求只编译当前请求相关模版
增加编译模版函数BuildTemplate可变参数,使之支持单个或多个模版的编译,同时针对开发模式,每个请求只编译当前请求相关模版,不再每次请求都编译全部模版
2015-08-06 10:09:34 +08:00
2015-05-25 09:10:37 +08:00
2015-07-06 13:54:14 +08:00
2015-02-27 22:51:20 +08:00
2015-05-27 23:46:45 +08:00
2015-06-13 11:15:13 +08:00
2015-02-26 23:34:43 +08:00
2014-10-31 15:48:57 +08:00
2015-06-09 10:18:21 +08:00
2015-06-04 18:40:10 +05:00
2014-08-18 16:41:43 +08:00
2014-08-18 16:41:43 +08:00
2015-05-25 09:10:34 +08:00
2015-07-04 17:55:01 +08:00
2014-08-07 12:14:10 +07:00
2015-05-25 09:10:38 +08:00
2015-07-27 08:44:58 +08:00
2014-08-18 16:41:43 +08:00
2015-07-26 17:06:55 +00:00
2014-08-18 16:41:43 +08:00
2015-05-25 09:10:37 +08:00
2014-08-18 16:41:43 +08:00
2015-05-25 09:10:37 +08:00
2014-11-05 22:40:31 +08:00
2014-09-23 23:54:38 +08:00
2014-05-17 02:26:50 +08:00
2014-08-18 16:41:43 +08:00
2015-05-25 09:10:37 +08:00
2015-07-27 08:44:58 +08:00
2015-07-26 17:06:55 +00:00
2015-06-13 12:47:01 +08:00
2015-07-27 08:44:58 +08:00
2015-05-25 09:10:35 +08:00
2015-05-25 09:10:35 +08:00

Beego

Build Status GoDoc

beego is used for rapid development of RESTful APIs, web apps and backend services in Go. It is inspired by Tornado, Sinatra and Flask. beego has some Go-specific features such as interfaces and struct embedding.

More info beego.me

##Quick Start ######Download and install

go get github.com/astaxie/beego

######Create file hello.go

package main

import "github.com/astaxie/beego"

func main(){
    beego.Run()
}

######Build and run

    go build hello.go
    ./hello

######Congratulations! You just built your first beego app. Open your browser and visit http://localhost:8000. Please see Documentation for more.

Features

  • RESTful support
  • MVC architecture
  • Modularity
  • Auto API documents
  • Annotation router
  • Namespace
  • Powerful development tools
  • Full stack for Web & API

Documentation

Community

LICENSE

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

Description
beego mirror
Readme 9.4 MiB
Languages
Go 99.6%
Shell 0.4%