Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Beego | 30,228 | 123 | 12 hours ago | 157 | May 27, 2023 | 24 | other | Go | ||
beego is an open-source, high-performance web framework for the Go programming language. | ||||||||||
Aqueduct | 2,357 | 35 | 2 | 3 years ago | 38 | June 01, 2020 | 180 | bsd-2-clause | Dart | |
Dart HTTP server framework for building REST APIs. Includes PostgreSQL ORM and OAuth2 provider. | ||||||||||
Remult | 2,328 | 4 | 11 hours ago | 355 | August 10, 2023 | 33 | mit | TypeScript | ||
Full-stack CRUD, simplified, with SSOT TypeScript entities | ||||||||||
Sandman2 | 1,960 | 6 | a day ago | 29 | September 08, 2020 | 38 | apache-2.0 | Python | ||
Automatically generate a RESTful API service for your legacy database. No code required! | ||||||||||
Foal | 1,812 | 7 | 28 | 15 days ago | 91 | August 13, 2023 | 26 | mit | TypeScript | |
Full-featured Node.js framework, with no complexity. 🚀 Simple and easy to use, TypeScript-based and well-documented. | ||||||||||
Go Doudou | 1,210 | 7 | a month ago | 241 | August 24, 2023 | 14 | mit | Go | ||
go-doudou(doudou pronounce /dəudəu/)is OpenAPI 3.0 (for REST) spec and Protobuf v3 (for grpc) based lightweight microservice framework. It supports monolith service application as well. | ||||||||||
Droidparts | 782 | 22 | 2 | 5 years ago | 79 | July 04, 2017 | 1 | apache-2.0 | Java | |
Postgrest Js | 768 | 1 | 15 days ago | 70 | June 27, 2022 | 77 | mit | TypeScript | ||
Isomorphic JavaScript client for PostgREST. | ||||||||||
Phpboot | 652 | 1 | 1 | 2 years ago | 14 | June 27, 2018 | 7 | mit | PHP | |
:coffee: 🚀 tiny & fast PHP framework for building Microservices/RESTful APIs, with useful features: IOC, Hook, ORM, RPC, Swagger, Annotation, Parameters binding, Validation, etc. | ||||||||||
Openrecord | 476 | 4 | 5 | 2 years ago | 241 | March 08, 2021 | 9 | mit | JavaScript | |
Make ORMs great again! |
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.
Beego is composed of four parts:
Please use RELEASE version, or master branch which contains the latest bug fix
We will remove the adapter package in v2.2.0 which will be released in Aug 2023
Old Doc - github New Doc Website Example
Kindly remind that sometimes the HTTPS certificate is expired, you may get some NOT SECURE warning
hello
directory, cd hello
directorymkdir hello
cd hello
go mod init
go get github.com/beego/beego/v2@latest
hello.go
package main
import "github.com/beego/beego/v2/server/web"
func main() {
web.Run()
}
go build hello.go
./hello
Congratulations! You've just built your first beego app.
beego source code is licensed under the Apache Licence, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.html).