Beego

beego is an open-source, high-performance web framework for the Go programming language.
Alternatives To Beego
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Beego30,22812312 hours ago157May 27, 202324otherGo
beego is an open-source, high-performance web framework for the Go programming language.
Aqueduct2,3573523 years ago38June 01, 2020180bsd-2-clauseDart
Dart HTTP server framework for building REST APIs. Includes PostgreSQL ORM and OAuth2 provider.
Remult2,328411 hours ago355August 10, 202333mitTypeScript
Full-stack CRUD, simplified, with SSOT TypeScript entities
Sandman21,960
6a day ago29September 08, 202038apache-2.0Python
Automatically generate a RESTful API service for your legacy database. No code required!
Foal1,81272815 days ago91August 13, 202326mitTypeScript
Full-featured Node.js framework, with no complexity. 🚀 Simple and easy to use, TypeScript-based and well-documented.
Go Doudou1,2107a month ago241August 24, 202314mitGo
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.
Droidparts7822225 years ago79July 04, 20171apache-2.0Java
Postgrest Js768115 days ago70June 27, 202277mitTypeScript
Isomorphic JavaScript client for PostgREST.
Phpboot652112 years ago14June 27, 20187mitPHP
:coffee: 🚀 tiny & fast PHP framework for building Microservices/RESTful APIs, with useful features: IOC, Hook, ORM, RPC, Swagger, Annotation, Parameters binding, Validation, etc.
Openrecord476452 years ago241March 08, 20219mitJavaScript
Make ORMs great again!
Alternatives To Beego
Select To Compare


Alternative Project Comparisons
Readme

Beego Test Go Report Card Go Reference

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.

architecture

Beego is composed of four parts:

  1. Base modules: including log module, config module, governor module;
  2. Task: is used for running timed tasks or periodic tasks;
  3. Client: including ORM module, httplib module, cache module;
  4. Server: including web module. We will support gRPC in the future;

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

Quick Start

Old Doc - github New Doc Website Example

Kindly remind that sometimes the HTTPS certificate is expired, you may get some NOT SECURE warning

Web Application

Http Request

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

package main

import "github.com/beego/beego/v2/server/web"

func main() {
	web.Run()
}

Build and run

go build hello.go
./hello

Go to http://localhost:8080

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

Features

Modules

Community

License

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

Popular Rest Projects
Popular Orm Projects
Popular Application Programming Interfaces Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Golang
Rest
Orm
Beego