Skip to content
forked from beego/beego

beego is an open-source, high-performance web framework for the Go programming language.

License

Notifications You must be signed in to change notification settings

liuhuanhui/beego

This branch is 2199 commits behind beego/beego:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

2d87d4f · Sep 22, 2016
Mar 23, 2016
Aug 30, 2016
Aug 17, 2016
Sep 15, 2016
Jan 29, 2016
Aug 17, 2016
Sep 8, 2016
Mar 25, 2016
Sep 22, 2016
Sep 4, 2016
Sep 11, 2016
Sep 14, 2016
Sep 12, 2015
Sep 13, 2016
Sep 15, 2016
May 5, 2016
Aug 31, 2015
Apr 11, 2016
Jan 13, 2016
May 16, 2014
Apr 8, 2016
Apr 18, 2016
Jun 1, 2016
Sep 13, 2016
Jun 1, 2016
Sep 22, 2016
Sep 15, 2016
Jun 1, 2016
Aug 2, 2016
Dec 16, 2015
Jan 17, 2016
Aug 30, 2016
Mar 27, 2016
Aug 7, 2016
Mar 25, 2016
Jan 15, 2016
Sep 8, 2015
Aug 13, 2016
Mar 25, 2016
Aug 17, 2016
Mar 15, 2016
Apr 5, 2016
Sep 21, 2016
Sep 15, 2016
Aug 7, 2016
Sep 11, 2016
Feb 12, 2016
Jul 28, 2016
Mar 4, 2016
Sep 1, 2016
Sep 2, 2016
Aug 29, 2016
Aug 29, 2016

Repository files navigation

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:8080. 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 source code is licensed under the Apache Licence, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html).

About

beego is an open-source, high-performance web framework for the Go programming language.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 100.0%