{"id":13459349,"url":"https://github.com/beego/beego","last_synced_at":"2025-05-12T17:42:59.881Z","repository":{"id":2595701,"uuid":"3577919","full_name":"beego/beego","owner":"beego","description":"beego is an open-source, high-performance web framework for the Go programming language.","archived":false,"fork":false,"pushed_at":"2025-05-05T14:31:26.000Z","size":12050,"stargazers_count":32048,"open_issues_count":12,"forks_count":5636,"subscribers_count":1171,"default_branch":"master","last_synced_at":"2025-05-05T15:09:37.518Z","etag":null,"topics":["beego","go"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/beego.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2012-02-29T02:32:08.000Z","updated_at":"2025-05-05T14:20:50.000Z","dependencies_parsed_at":"2023-11-24T14:24:44.283Z","dependency_job_id":"11216344-22de-482d-8694-9aa2e6bf59b7","html_url":"https://github.com/beego/beego","commit_stats":{"total_commits":3420,"total_committers":523,"mean_commits":6.539196940726577,"dds":0.6997076023391813,"last_synced_commit":"05f624fe098bafaf97d389531faeb604070c0490"},"previous_names":[],"tags_count":69,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beego%2Fbeego","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beego%2Fbeego/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beego%2Fbeego/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beego%2Fbeego/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/beego","download_url":"https://codeload.github.com/beego/beego/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253789575,"owners_count":21964697,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["beego","go"],"created_at":"2024-07-31T09:01:17.738Z","updated_at":"2025-05-12T17:42:58.611Z","avatar_url":"https://github.com/beego.png","language":"Go","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)\n\nBeego is used for rapid development of enterprise application in Go, including RESTful APIs, web apps and backend services.\n\nIt is inspired by Tornado, Sinatra and Flask. beego has some Go-specific features such as interfaces and struct embedding.\n\n## Quick Start\n- [New Doc Website - unavailable](https://beego.gocn.vip)\n- [New Doc Website Backup @flycash](https://doc.meoying.com/en-US/beego/developing/)\n- [New Doc Website source code](https://github.com/beego/beego-doc)\n- [Old Doc - github](https://github.com/beego/beedoc)\n- [Example](https://github.com/beego/beego-example)\n\n\u003e Kindly remind that sometimes the HTTPS certificate is expired, you may get some NOT SECURE warning\n\n### Web Application\n\n#### Create `hello` directory, cd `hello` directory\n\n    mkdir hello\n    cd hello\n\n#### Init module\n\n    go mod init\n\n#### Download and install\n\n    go get github.com/beego/beego/v2@latest\n\n#### Create file `hello.go`\n\n```go\npackage main\n\nimport \"github.com/beego/beego/v2/server/web\"\n\nfunc main() {\n\tweb.Run()\n}\n```\n\n#### Download required dependencies\n\n    go mod tidy\n\n#### Build and run\n\n    go build hello.go\n    ./hello\n\n#### Go to [http://localhost:8080](http://localhost:8080)\n\nCongratulations! You've just built your first **beego** app.\n\n## Features\n\n* RESTful support\n* [MVC architecture](https://github.com/beego/beedoc/tree/master/en-US/mvc)\n* Modularity\n* [Auto API documents](https://github.com/beego/beedoc/blob/master/en-US/advantage/docs.md)\n* [Annotation router](https://github.com/beego/beedoc/blob/master/en-US/mvc/controller/router.md)\n* [Namespace](https://github.com/beego/beedoc/blob/master/en-US/mvc/controller/router.md#namespace)\n* [Powerful development tools](https://github.com/beego/bee)\n* Full stack for Web \u0026 API\n\n## Modules\n\n* [orm](https://github.com/beego/beedoc/tree/master/en-US/mvc/model)\n* [session](https://github.com/beego/beedoc/blob/master/en-US/module/session.md)\n* [logs](https://github.com/beego/beedoc/blob/master/en-US/module/logs.md)\n* [config](https://github.com/beego/beedoc/blob/master/en-US/module/config.md)\n* [cache](https://github.com/beego/beedoc/blob/master/en-US/module/cache.md)\n* [context](https://github.com/beego/beedoc/blob/master/en-US/module/context.md)\n* [admin](https://github.com/beego/beedoc/blob/master/en-US/module/admin.md)\n* [httplib](https://github.com/beego/beedoc/blob/master/en-US/module/httplib.md)\n* [task](https://github.com/beego/beedoc/blob/master/en-US/module/task.md)\n* [i18n](https://github.com/beego/beedoc/blob/master/en-US/module/i18n.md)\n\n## Community\n\n* Welcome to join us in Slack: [https://beego.slack.com invite](https://join.slack.com/t/beego/shared_invite/zt-fqlfjaxs-_CRmiITCSbEqQG9NeBqXKA),\n* QQ Group ID:523992905\n* [Contribution Guide](https://github.com/beego/beedoc/blob/master/en-US/intro/contributing.md).\n\n## License\n\nbeego source code is licensed under the Apache Licence, Version 2.0\n([https://www.apache.org/licenses/LICENSE-2.0.html](https://www.apache.org/licenses/LICENSE-2.0.html)).\n","funding_links":[],"categories":["Go","HarmonyOS","Programming","Web Frameworks","Go (531)","后端开发框架及项目","Relational Databases","Web 框架","Web框架","ORM"],"sub_categories":["Windows Manager","Golang","Utility/Miscellaneous","管理面板","爬虫工具","实用程序/Miscellaneous","HTTP Clients","Fail injection"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeego%2Fbeego","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbeego%2Fbeego","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeego%2Fbeego/lists"}