Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/beego/beego
beego is an open-source, high-performance web framework for the Go programming language.
https://github.com/beego/beego
beego go
Last synced: 3 days ago
JSON representation
beego is an open-source, high-performance web framework for the Go programming language.
- Host: GitHub
- URL: https://github.com/beego/beego
- Owner: beego
- License: other
- Created: 2012-02-29T02:32:08.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2024-04-12T12:16:44.000Z (8 months ago)
- Last Synced: 2024-04-12T19:56:20.953Z (8 months ago)
- Topics: beego, go
- Language: Go
- Homepage:
- Size: 11.2 MB
- Stars: 30,848
- Watchers: 1,192
- Forks: 5,580
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome - beego/beego - beego is an open-source, high-performance web framework for the Go programming language. (Go)
- awesome-trevor - Beego - open-source, high-performance web framework for the Go programming language (Programming / Golang)
- awesome-repositories - beego/beego - beego is an open-source, high-performance web framework for the Go programming language. (Go)
- awesome-github-star - beego - source, high-performance web framework for the Go programming language. | beego | 30238 | (Go)
- awesome-go - Beego - beego is an open-source, high-performance web framework for the Go programming language. Stars:`31.7K`. (Web Frameworks / Utility/Miscellaneous)
- awesome-go-extra - beego - source, high-performance web framework for the Go programming language.|28743|5532|37|2012-02-29T02:32:08Z|2022-08-24T13:12:21Z| (Web Frameworks / Fail injection)
- awesome-hacking-lists - beego/beego - beego is an open-source, high-performance web framework for the Go programming language. (Go)
- StarryDivineSky - beego/beego
- my-awesome - beego/beego - 12 star:31.7k fork:5.6k beego is an open-source, high-performance web framework for the Go programming language. (Go)
- awesome-go - Beego - 高性能的开源Go Web框架。 (Web 框架 / 爬虫工具)
- awesome-go - Beego - 高性能的开源Go Web框架。 (Web 框架 / 爬虫工具)
README
# Beego [![Test](https://github.com/beego/beego/actions/workflows/test.yml/badge.svg?branch=develop)](https://github.com/beego/beego/actions/workflows/test.yml) [![Go Report Card](https://goreportcard.com/badge/github.com/beego/beego)](https://goreportcard.com/report/github.com/beego/beego) [![Go Reference](https://pkg.go.dev/badge/github.com/beego/beego/v2.svg)](https://pkg.go.dev/github.com/beego/beego/v2)
Beego is used for rapid development of enterprise application in Go, including RESTful APIs, web apps and backend services.
It is inspired by Tornado, Sinatra and Flask. beego has some Go-specific features such as interfaces and struct embedding.
## Quick Start
- [New Doc Website - unavailable](https://beego.gocn.vip)
- [New Doc Website Backup @flycash](https://doc.meoying.com/en-US/beego/developing/)
- [New Doc Website source code](https://github.com/beego/beego-doc)
- [Old Doc - github](https://github.com/beego/beedoc)
- [Example](https://github.com/beego/beego-example)> Kindly remind that sometimes the HTTPS certificate is expired, you may get some NOT SECURE warning
### Web Application
#### Create `hello` directory, cd `hello` directory
mkdir hello
cd hello#### Init module
go mod init
#### Download and install
go get github.com/beego/beego/v2@latest
#### Create file `hello.go`
```go
package mainimport "github.com/beego/beego/v2/server/web"
func main() {
web.Run()
}
```#### Download required dependencies
go mod tidy
#### Build and run
go build hello.go
./hello#### Go to [http://localhost:8080](http://localhost:8080)
Congratulations! You've just built your first **beego** app.
## Features
* RESTful support
* [MVC architecture](https://github.com/beego/beedoc/tree/master/en-US/mvc)
* Modularity
* [Auto API documents](https://github.com/beego/beedoc/blob/master/en-US/advantage/docs.md)
* [Annotation router](https://github.com/beego/beedoc/blob/master/en-US/mvc/controller/router.md)
* [Namespace](https://github.com/beego/beedoc/blob/master/en-US/mvc/controller/router.md#namespace)
* [Powerful development tools](https://github.com/beego/bee)
* Full stack for Web & API## Modules
* [orm](https://github.com/beego/beedoc/tree/master/en-US/mvc/model)
* [session](https://github.com/beego/beedoc/blob/master/en-US/module/session.md)
* [logs](https://github.com/beego/beedoc/blob/master/en-US/module/logs.md)
* [config](https://github.com/beego/beedoc/blob/master/en-US/module/config.md)
* [cache](https://github.com/beego/beedoc/blob/master/en-US/module/cache.md)
* [context](https://github.com/beego/beedoc/blob/master/en-US/module/context.md)
* [admin](https://github.com/beego/beedoc/blob/master/en-US/module/admin.md)
* [httplib](https://github.com/beego/beedoc/blob/master/en-US/module/httplib.md)
* [task](https://github.com/beego/beedoc/blob/master/en-US/module/task.md)
* [i18n](https://github.com/beego/beedoc/blob/master/en-US/module/i18n.md)## Community
* Welcome to join us in Slack: [https://beego.slack.com invite](https://join.slack.com/t/beego/shared_invite/zt-fqlfjaxs-_CRmiITCSbEqQG9NeBqXKA),
* QQ Group ID:523992905
* [Contribution Guide](https://github.com/beego/beedoc/blob/master/en-US/intro/contributing.md).## License
beego source code is licensed under the Apache Licence, Version 2.0
([https://www.apache.org/licenses/LICENSE-2.0.html](https://www.apache.org/licenses/LICENSE-2.0.html)).