{"id":36454160,"url":"https://github.com/fananchong/go-xserver","last_synced_at":"2026-01-11T23:01:08.819Z","repository":{"id":57516274,"uuid":"161993928","full_name":"fananchong/go-xserver","owner":"fananchong","description":"Go 服务器框架（go-x.v2）","archived":false,"fork":false,"pushed_at":"2021-01-19T14:50:30.000Z","size":730,"stargazers_count":159,"open_issues_count":1,"forks_count":32,"subscribers_count":5,"default_branch":"master","last_synced_at":"2024-06-18T21:51:21.580Z","etag":null,"topics":["framework","go","go-x","go-xserver","golang","plugin","server","server-framework"],"latest_commit_sha":null,"homepage":"","language":"Go","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/fananchong.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-12-16T11:22:40.000Z","updated_at":"2024-01-25T08:51:07.000Z","dependencies_parsed_at":"2022-08-30T01:41:02.314Z","dependency_job_id":null,"html_url":"https://github.com/fananchong/go-xserver","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fananchong/go-xserver","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fananchong%2Fgo-xserver","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fananchong%2Fgo-xserver/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fananchong%2Fgo-xserver/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fananchong%2Fgo-xserver/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fananchong","download_url":"https://codeload.github.com/fananchong/go-xserver/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fananchong%2Fgo-xserver/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28326166,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-11T22:11:01.104Z","status":"ssl_error","status_checked_at":"2026-01-11T22:10:58.990Z","response_time":60,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["framework","go","go-x","go-xserver","golang","plugin","server","server-framework"],"created_at":"2026-01-11T23:01:08.105Z","updated_at":"2026-01-11T23:01:08.780Z","avatar_url":"https://github.com/fananchong.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# go-xserver\n\n**go-xserver 是一个 Golang 服务器框架（go-x.v2）**\n\n致力于实现 1 个高可用、高易用的 Golang 服务器框架\n\n并以插件的方式，来丰富框架内容\n\n## 编译\n\n- [安装 golang 1.12+](https://golang.google.cn/dl/)\n- [安装 docker](https://docs.docker.com/install/linux/docker-ce/centos/)\n- 编译执行以下语句即可：\n\n  ```shell\n  ./make.sh\n  ```\n\n## 运行\n\n- 安装 Redis ，并修改 config/config.toml 相关配置\n\n- All In One 例子\n  ```shell\n  ./make.sh start\n  ./make.sh stop\n  ```\n\n## 测试客户端\n\n- [pyclient](https://github.com/fananchong/go-xclient/tree/master/pyclient)\n\n\n## 缺省插件\n\n- [go-xserver-plugins](https://github.com/fananchong/go-xserver-plugins)\n  - mgr\n  - login\n  - gateway\n\n\n## v0.1\n\n- 管理服务器\n- 登陆服务器\n- 网关服务器\n  - 客户端消息中继\n  - 服务器组内消息中继\n- 大厅服务器\n  - 获取角色列表（登录大厅服务）\n  - 创建角色\n  - 获取角色详细信息（进入游戏）\n  - 登出游戏\n  - 角色聊天（世界聊天、私聊）\n  \n  \n## v0.2\n\n- 基于 gRPC-go 改造框架层代码\n- 分布式事务框架\n- 支持 istio 部署\n\n\n## WIKI\n\n- [主体框架](doc/规范-代码框架.md)\n- 配置模块\n  - [框架层配置](doc/规范-配置文件_框架层.md)\n  - [逻辑层配置](doc/规范-配置文件_逻辑层.md)\n- [服务发现](doc/框架层功能-服务发现.md)\n- [登陆模块](doc/框架层功能-登陆模块.md)\n- [闲置连接处理](doc/框架层功能-闲置连接处理.md)\n- [登出模块](doc/框架层功能-登出模块.md)\n- [服务器组内互联](doc/规范-服务器架构.md)\n\n\n## ISSUE\n\n- [插件工程独立建库问题](doc/ISSUE-插件工程独立建库问题.md)\n\n## 将要实现的功能\n\n- 框架层功能\n    - 灰度更新\n    - 服务器健康监测\n- 逻辑层功能\n    - 匹配服务\n    - 房间服务\n    - 压测工具\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffananchong%2Fgo-xserver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffananchong%2Fgo-xserver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffananchong%2Fgo-xserver/lists"}