React Native 超完整的开源项目,功能丰富,适合学习和日常使用。GSYGithubApp 系列的优势:我们目前已经拥有 Flutter、Weex、ReactNative、Kotlin View、Kotlin Jetpack Compose ,Compose MultiPlatform,Harmony ArkUI 七个版本,功能齐全,项目框架内技术涉及面广,完成度高,持续维护,配套文章,适合全面学习,对比参考。
2,490
stars
91
commits
JavaScript
primary language
May 30, 2026
updated

如果克隆太慢或者图片看不到,可尝试从码云地址下载
基于React Native开发,适配 Android 与 iOS。
项目的目的是为方便个人日常维护和查阅Github,更好的沉浸于码友之间的互基,Github就是你的家。
项目同时适合react native的练手学习,覆盖了各种框架的使用,与原生的交互等。
随着项目的使用情况和反馈,将时不时根据更新并完善用户体验与功能优化吗,欢迎提出问题。
1、配置好react native开发环境,可参阅 【搭建环境】 | 【React Native开发(一、入门)】
Node 版本固定为 .nvmrc 中声明的
20.19.4。仓库提供项目级 Node 隔离脚本 scripts/use-node.sh(基于 nn exec,不污染全局),所有内置脚本(npm run android/bundle:*:smoke)已自动通过它解析。.npmrc启用engine-strict=true与 15 天发布冷却(cooldown=21600),新增依赖必须满足 AGENTS.md §4 的红线。
2、clone代码,根目录下执行npm install安装node_modules(自动跑 patch-package;如果走 git 镜像,可参考 android/init.gradle 提供的 aliyun mirror)
3、重点:你需要自己在app/config目录下 创建一个ignoreConfig.js文件,然后输入你申请的Github client_id 和 client_secret。
export const CLIENT_ID = "xxxx";
export const CLIENT_SECRET = "xxxx";
//如果需要上传七牛
export const ACCESS_KEY = "xxxx";
export const SECRET_KEY = "xxx";
export const QN_HOST = "xxxx";
export const SCOPE = "xxxx";
注册 Github APP 传送门,当然,前提是你现有一个github账号(~ ̄▽ ̄)~ 。
gsygithubapp://authed
4、打开xcode运行或执行react-native run-android
Settings → Developer settings → Personal access tokens)登录:在登录页点击 Login with Token,把 ghp_xxxx 或 github_pat_xxxx 粘贴进去即可。Token 仅写入 AsyncStorage 本机,不会上传任何第三方。仓库的架构、需求、决策、迭代日志、回归与升级 SOP 全部沉淀在 harness/,AI 协作(Trae / Cursor / Copilot 等)在动手前必须阅读 AGENTS.md 与 harness/README.md。常用入口:
| 类型 | 二维码 |
|---|---|
| Apk二维码 | ![]() |
| IOS暂无下载 | 残念(╯‵□′)╯︵┻━┻,第三方太贵,没企业证书。![]() |
已有ipa,不过不是企业ipa,需要udid,所以目前ios自用╮(╯▽╰)╭





详见 package.json 与 harness/architecture/modules.md。本轮 RN 0.85 升级后核心依赖:
git+ 依赖)1、xcode的运行,第一次下载 react native 和 realm 相关包比较耗时。iOS RN 0.45以上版本所需的第三方编译库(boost等)解决
2、win下在npm出现问题时,再次npm时可以删除.lock文件先(如果是mac就简单很多了)。

CarGuo/GSYGithubAPP is licensed under the
Apache License 2.0
A permissive license whose main conditions require preservation of copyright and license notices.
Contributors provide an express grant of patent rights.
Licensed works, modifications, and larger works may be distributed under different terms and without source code.
JavaScript
98.0%
React Native 超完整的开源项目,功能丰富,适合学习和日常使用。GSYGithubApp 系列的优势:我们目前已经拥有 Flutter、Weex、ReactNative、Kotlin View、Kotlin Jetpack Compose ,Compose MultiPlatform,Harmony ArkUI 七个版本,功能齐全,项目框架内技术涉及面广,完成度高,持续维护,配套文章,适合全面学习,对比参考。
2,490
stars
91
commits
JavaScript
primary language
May 30, 2026
updated

如果克隆太慢或者图片看不到,可尝试从码云地址下载
基于React Native开发,适配 Android 与 iOS。
项目的目的是为方便个人日常维护和查阅Github,更好的沉浸于码友之间的互基,Github就是你的家。
项目同时适合react native的练手学习,覆盖了各种框架的使用,与原生的交互等。
随着项目的使用情况和反馈,将时不时根据更新并完善用户体验与功能优化吗,欢迎提出问题。
1、配置好react native开发环境,可参阅 【搭建环境】 | 【React Native开发(一、入门)】
Node 版本固定为 .nvmrc 中声明的
20.19.4。仓库提供项目级 Node 隔离脚本 scripts/use-node.sh(基于 nn exec,不污染全局),所有内置脚本(npm run android/bundle:*:smoke)已自动通过它解析。.npmrc启用engine-strict=true与 15 天发布冷却(cooldown=21600),新增依赖必须满足 AGENTS.md §4 的红线。
2、clone代码,根目录下执行npm install安装node_modules(自动跑 patch-package;如果走 git 镜像,可参考 android/init.gradle 提供的 aliyun mirror)
3、重点:你需要自己在app/config目录下 创建一个ignoreConfig.js文件,然后输入你申请的Github client_id 和 client_secret。
export const CLIENT_ID = "xxxx";
export const CLIENT_SECRET = "xxxx";
//如果需要上传七牛
export const ACCESS_KEY = "xxxx";
export const SECRET_KEY = "xxx";
export const QN_HOST = "xxxx";
export const SCOPE = "xxxx";
注册 Github APP 传送门,当然,前提是你现有一个github账号(~ ̄▽ ̄)~ 。
gsygithubapp://authed
4、打开xcode运行或执行react-native run-android
Settings → Developer settings → Personal access tokens)登录:在登录页点击 Login with Token,把 ghp_xxxx 或 github_pat_xxxx 粘贴进去即可。Token 仅写入 AsyncStorage 本机,不会上传任何第三方。仓库的架构、需求、决策、迭代日志、回归与升级 SOP 全部沉淀在 harness/,AI 协作(Trae / Cursor / Copilot 等)在动手前必须阅读 AGENTS.md 与 harness/README.md。常用入口:
| 类型 | 二维码 |
|---|---|
| Apk二维码 | ![]() |
| IOS暂无下载 | 残念(╯‵□′)╯︵┻━┻,第三方太贵,没企业证书。![]() |
已有ipa,不过不是企业ipa,需要udid,所以目前ios自用╮(╯▽╰)╭





详见 package.json 与 harness/architecture/modules.md。本轮 RN 0.85 升级后核心依赖:
git+ 依赖)1、xcode的运行,第一次下载 react native 和 realm 相关包比较耗时。iOS RN 0.45以上版本所需的第三方编译库(boost等)解决
2、win下在npm出现问题时,再次npm时可以删除.lock文件先(如果是mac就简单很多了)。

CarGuo/GSYGithubAPP is licensed under the
Apache License 2.0
A permissive license whose main conditions require preservation of copyright and license notices.
Contributors provide an express grant of patent rights.
Licensed works, modifications, and larger works may be distributed under different terms and without source code.
JavaScript
98.0%