📅  最后修改于: 2023-12-03 15:04:50.216000             🧑  作者: Mango
本项目是一个使用 React-Native 技术开发的 Github 应用示例。通过本示例,开发者可以学习React-Native 开发技术以及 Github API 调用的相关知识,快速了解 React-Native 应用的开发方式。
.
├── android // 安卓应用相关文件
├── ios // iOS 应用相关文件
├── node_modules // 第三方依赖模块
├──src // 开发目录
│ ├── components // 组件目录
│ ├── redux // redux 相关文件目录
│ ├── screens // 屏幕文件目录
│ ├── services // API 服务文件目录
│ ├── utils // 工具函数目录
│ ├── App.js // React-Native 入口文件
│ └── app.json // React-Native 配置文件
├── index.js // 应用启动文件
├── package.json // 项目依赖配置文件
└── README.md // 项目说明文档
git clone https://github.com/yourname/react-native-github.git
cd react-native-github
npm install / yarn install
npm run android /npm run ios
npm start
:启动 React-Native 打包工具npm run android
:启动 Android 开发环境npm run ios
:启动 iOS 开发环境npm run tsc
:编译 TypeScript 代码npm run eslint
:检查代码规范npm run test
:运行测试