beego

package module
v2.0.5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 30, 2022 License: Apache-2.0 Imports: 0 Imported by: 8

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

Quick Start

Official website 中文新版文档网站

Example

If you could not open official website, go to beedoc

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

Documentation

Index

Constants

View Source
const (
	// VERSION represent beego web framework version.
	VERSION = "2.0.0"
)

Variables

View Source
var (
	BuildVersion     string
	BuildGitRevision string
	BuildStatus      string
	BuildTag         string
	BuildTime        string

	GoVersion string

	GitBranch string
)

Functions

This section is empty.

Types

This section is empty.

Directories

Path Synopsis
Package adapter used to keep compatible with v1.x
Package adapter used to keep compatible with v1.x
cache
Package cache provide a Cache interface and some implement engine Usage:
Package cache provide a Cache interface and some implement engine Usage:
cache/memcache
Package memcache for cache provider
Package memcache for cache provider
cache/redis
Package redis for cache provider
Package redis for cache provider
config
Package config is used to parse config.
Package config is used to parse config.
config/env
Package env is used to parse environment.
Package env is used to parse environment.
config/xml
Package xml for config provider.
Package xml for config provider.
config/yaml
Package yaml for config provider
Package yaml for config provider
context
Package context provide the context utils Usage:
Package context provide the context utils Usage:
grace
Package grace use to hot reload Description: http://grisha.org/blog/2014/06/03/graceful-restart-in-golang/
Package grace use to hot reload Description: http://grisha.org/blog/2014/06/03/graceful-restart-in-golang/
httplib
Package httplib is used as http.Client Usage:
Package httplib is used as http.Client Usage:
logs
Package logs provide a general log interface Usage:
Package logs provide a general log interface Usage:
migration
Package migration enables you to generate migrations back and forth.
Package migration enables you to generate migrations back and forth.
orm
Package orm provide ORM for MySQL/PostgreSQL/sqlite Simple Usage
Package orm provide ORM for MySQL/PostgreSQL/sqlite Simple Usage
plugins/apiauth
Package apiauth provides handlers to enable apiauth support.
Package apiauth provides handlers to enable apiauth support.
plugins/auth
Package auth provides handlers to enable basic auth support.
Package auth provides handlers to enable basic auth support.
plugins/authz
Package authz provides handlers to enable ACL, RBAC, ABAC authorization support.
Package authz provides handlers to enable ACL, RBAC, ABAC authorization support.
plugins/cors
Package cors provides handlers to enable CORS support.
Package cors provides handlers to enable CORS support.
session
Package session provider
Package session provider
session/couchbase
Package couchbase for session provider
Package couchbase for session provider
session/ledis
Package ledis provide session Provider
Package ledis provide session Provider
session/memcache
Package memcache for session provider
Package memcache for session provider
session/mysql
Package mysql for session provider
Package mysql for session provider
session/postgres
Package postgres for session provider
Package postgres for session provider
session/redis
Package redis for session provider
Package redis for session provider
session/redis_cluster
Package redis for session provider
Package redis for session provider
session/redis_sentinel
Package redis for session provider
Package redis for session provider
swagger
Package swagger struct definition
Package swagger struct definition
toolbox
Package toolbox healthcheck
Package toolbox healthcheck
utils/captcha
Package captcha implements generation and verification of image CAPTCHAs.
Package captcha implements generation and verification of image CAPTCHAs.
utils/pagination
Package pagination provides utilities to setup a paginator within the context of a http request.
Package pagination provides utilities to setup a paginator within the context of a http request.
validation
Package validation for validations
Package validation for validations
client
cache
Package cache provide a Cache interface and some implement engine Usage:
Package cache provide a Cache interface and some implement engine Usage:
cache/memcache
Package memcache for cache provider
Package memcache for cache provider
cache/redis
Package redis for cache provider
Package redis for cache provider
httplib
Package httplib is used as http.Client Usage:
Package httplib is used as http.Client Usage:
orm
Package orm provide ORM for MySQL/PostgreSQL/sqlite Simple Usage
Package orm provide ORM for MySQL/PostgreSQL/sqlite Simple Usage
orm/migration
Package migration enables you to generate migrations back and forth.
Package migration enables you to generate migrations back and forth.
core
admin
Package admin healthcheck
Package admin healthcheck
bean
Package bean is a basic package it should not depend on other modules except common module, log module and config module
Package bean is a basic package it should not depend on other modules except common module, log module and config module
config
Package config is used to parse config.
Package config is used to parse config.
config/env
Package env is used to parse environment.
Package env is used to parse environment.
config/xml
Package xml for config provider.
Package xml for config provider.
config/yaml
Package yaml for config provider Usage:
Package yaml for config provider Usage:
logs
Package logs provide a general log interface Usage:
Package logs provide a general log interface Usage:
logs/alils
Package alils implements the SDK(v0.5.0) of Simple Log Service(abbr.
Package alils implements the SDK(v0.5.0) of Simple Log Service(abbr.
utils/pagination
Package pagination provides utilities to setup a paginator within the context of a http request.
Package pagination provides utilities to setup a paginator within the context of a http request.
validation
Package validation for validations
Package validation for validations
server
web
Package beego provide a MVC framework beego: an open-source, high-performance, modular, full-stack web framework
Package beego provide a MVC framework beego: an open-source, high-performance, modular, full-stack web framework
web/captcha
Package captcha implements generation and verification of image CAPTCHAs.
Package captcha implements generation and verification of image CAPTCHAs.
web/context
Package context provide the context utils Usage:
Package context provide the context utils Usage:
web/filter/apiauth
Package apiauth provides handlers to enable apiauth support.
Package apiauth provides handlers to enable apiauth support.
web/filter/auth
Package auth provides handlers to enable basic auth support.
Package auth provides handlers to enable basic auth support.
web/filter/authz
Package authz provides handlers to enable ACL, RBAC, ABAC authorization support.
Package authz provides handlers to enable ACL, RBAC, ABAC authorization support.
web/filter/cors
Package cors provides handlers to enable CORS support.
Package cors provides handlers to enable CORS support.
web/grace
Package grace use to hot reload Description: http://grisha.org/blog/2014/06/03/graceful-restart-in-golang/
Package grace use to hot reload Description: http://grisha.org/blog/2014/06/03/graceful-restart-in-golang/
web/session
Package session provider
Package session provider
web/session/couchbase
Package couchbase for session provider
Package couchbase for session provider
web/session/ledis
Package ledis provide session Provider
Package ledis provide session Provider
web/session/memcache
Package memcache for session provider
Package memcache for session provider
web/session/mysql
Package mysql for session provider
Package mysql for session provider
web/session/postgres
Package postgres for session provider
Package postgres for session provider
web/session/redis
Package redis for session provider
Package redis for session provider
web/session/redis_cluster
Package redis for session provider
Package redis for session provider
web/session/redis_sentinel
Package redis for session provider
Package redis for session provider
web/swagger
Package swagger struct definition
Package swagger struct definition

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL