{"id":20968814,"url":"https://github.com/phachon/fastgo","last_synced_at":"2026-04-16T22:31:00.887Z","repository":{"id":57485981,"uuid":"127373612","full_name":"phachon/fastgo","owner":"phachon","description":"A simple, fast go web development framework. 简单方便快速的  go web 开发框架 ","archived":false,"fork":false,"pushed_at":"2018-05-24T02:11:53.000Z","size":354,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-15T03:19:30.043Z","etag":null,"topics":["fasthttp","fasthttprouter","go","go-framework","go-study","go-web-application","go-web-framework","golang","web-framework"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/phachon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-03-30T02:53:54.000Z","updated_at":"2025-02-21T05:00:13.000Z","dependencies_parsed_at":"2022-09-18T18:16:26.572Z","dependency_job_id":null,"html_url":"https://github.com/phachon/fastgo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/phachon/fastgo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phachon%2Ffastgo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phachon%2Ffastgo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phachon%2Ffastgo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phachon%2Ffastgo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/phachon","download_url":"https://codeload.github.com/phachon/fastgo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phachon%2Ffastgo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31907424,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"ssl_error","status_checked_at":"2026-04-16T18:21:47.142Z","response_time":69,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["fasthttp","fasthttprouter","go","go-framework","go-study","go-web-application","go-web-framework","golang","web-framework"],"created_at":"2024-11-19T03:16:52.630Z","updated_at":"2026-04-16T22:31:00.859Z","avatar_url":"https://github.com/phachon.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![logo](./logo.png)](https://github.com/phachon/fastgo)\n\n[![build](https://img.shields.io/shippable/5444c5ecb904a4b21567b0ff.svg)](https://travis-ci.org/phachon/fastgo)\n[![godoc](http://img.shields.io/badge/godoc-reference-blue.svg?style=flat)](https://godoc.org/github.com/phachon/fastgo)\n[![license](http://img.shields.io/badge/license-MIT-red.svg?style=flat)](https://raw.githubusercontent.com/phachon/fastgo/master/LICENSE)\n[![go_Report](https://goreportcard.com/badge/github.com/phachon/fastgo)](https://goreportcard.com/report/github.com/phachon/fastgo)\n[![release](https://img.shields.io/github/release/phachon/fastgo.svg?style=flat)](https://github.com/phachon/fastgo/releases) \n[![powered_by](https://img.shields.io/badge/powered_by-Go-3362c2.svg?style=flat)]()\n[![platforms](https://img.shields.io/badge/platform-All-yellow.svg?style=flat)]()\n\nfastgo 是一个基于 [fasthttp](https://github.com/valyala/fasthttp), [fasthttprouter](https://github.com/buaazp/fasthttprouter), [fasthttpsession](https://github.com/phachon/fasthttpsession) 搭建的快速的 Go Web 开发框架!\n\n\n# 安装\n\n要求是 Go 至少是 v1.7。\n\n```shell\n$ go get -u github.com/phachon/fastgo\n$ go get ./...\n```\n\n# 使用\n```go\npackage main\n\nimport (\n    \"github.com/phachon/fastgo\"\n)\n\n\ntype AuthorController struct{\n\tfastgo.Controller\n}\n\nfunc (this *AuthorController) Index()  {\n    \n\tthis.ReturnJson(map[string]string{\n\t\t\"data\": \"ok\",\n\t})\n}\n\nfunc main() {\n    author := \u0026AuthorController{}\n    fastgo.Route.GET(\"/author/index\", author, \"Index\")\n\n    fastgo.Run()\n}\n\n```\n\n# 文档\n\n文档地址: [http://godoc.org/github.com/phachon/fastgo](http://godoc.org/github.com/phachon/fastgo)\n\n\n## 示例\n\n[完整的 MVC 登录示例](./_example/mvc)\n\n# 组件\n- [fasthttp](https://github.com/valyala/fasthttp)\n- [fasthttprouter](https://github.com/buaazp/fasthttprouter)\n- [fasthttpsession](https://github.com/phachon/fasthttpsession)\n- [go-logger](https://github.com/phachon/go-logger)\n\n## 反馈\n\n- 如果您喜欢该项目，请 [Start](https://github.com/phachon/fastgo/stargazers).\n- 如果在使用过程中有任何问题， 请提交 [Issue](https://github.com/phachon/fastgo/issues).\n- 如果您发现并解决了bug，请提交 [Pull Request](https://github.com/phachon/fastgo/pulls).\n- 如果您想扩展 session 存储，欢迎 [Fork](https://github.com/phachon/fastgo/network/members) and merge this rep.\n- 如果你想交个朋友，欢迎发邮件给 [phachon@163.com](mailto:phachon@163.com).\n\n## License\n\nMIT\n\nThanks\n---------\nCreate By phachon@163.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphachon%2Ffastgo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphachon%2Ffastgo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphachon%2Ffastgo/lists"}