Skip to content

Latest commit

 

History

History
73 lines (47 loc) · 2.04 KB

README.md

File metadata and controls

73 lines (47 loc) · 2.04 KB

Beegoe Build Status GoDoc Foundation Go Report Card

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 at beego.me.

Quick Start

Create hello directory, cd hello directory

mkdir hello
cd hello

Init module

go mod init

Download and install

go get github.com/zeuslichard/beegoe

Create file hello.go

package main

import "github.com/zeuslichard/beegoe"

func main(){
    beego.Run()
}

Build and run

go build hello.go
./hello

Congratulations! You've just built your first beego app.

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).