{"id":23414546,"url":"https://github.com/dharmveer97/react-native-starter-kit-2024","last_synced_at":"2026-02-11T12:32:57.262Z","repository":{"id":269226350,"uuid":"906780122","full_name":"dharmveer97/react-native-starter-kit-2024","owner":"dharmveer97","description":"This project is a scalable starter template for Expo applications. It includes configurations for ESlint, Prettier, and Jest for a robust development workflow. Zustand will be added in the future for efficient state management with local storage integration. Perfect for building cross-platform apps with a structured, maintainable codebase.","archived":false,"fork":false,"pushed_at":"2024-12-21T22:31:23.000Z","size":823,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-27T01:39:27.762Z","etag":null,"topics":["eslint","expo","react","react-native","zustand"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dharmveer97.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2024-12-21T22:04:47.000Z","updated_at":"2025-02-03T14:10:07.000Z","dependencies_parsed_at":null,"dependency_job_id":"f44a8fdb-baee-4baf-b898-2b1a12dc1ed9","html_url":"https://github.com/dharmveer97/react-native-starter-kit-2024","commit_stats":null,"previous_names":["dharmveer97/react-native-starter-kit-2024"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dharmveer97/react-native-starter-kit-2024","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dharmveer97%2Freact-native-starter-kit-2024","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dharmveer97%2Freact-native-starter-kit-2024/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dharmveer97%2Freact-native-starter-kit-2024/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dharmveer97%2Freact-native-starter-kit-2024/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dharmveer97","download_url":"https://codeload.github.com/dharmveer97/react-native-starter-kit-2024/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dharmveer97%2Freact-native-starter-kit-2024/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29333000,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T06:13:03.264Z","status":"ssl_error","status_checked_at":"2026-02-11T06:12:55.843Z","response_time":97,"last_error":"SSL_read: 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":["eslint","expo","react","react-native","zustand"],"created_at":"2024-12-22T20:18:32.560Z","updated_at":"2026-02-11T12:32:57.248Z","avatar_url":"https://github.com/dharmveer97.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# **Expo Kickoff Starter Kit 2024 🚀**\n\nWelcome to your Expo app! 👋 This powerful starter template is designed to kickstart your next React Native project with Expo. Pre-configured with **ESLint**, **Prettier**, and a robust development workflow, it's perfect for building scalable cross-platform applications.\n\n---\n\n## **🛠 Features**\n\n- **Expo Router**: Simplified file-based routing.\n- **ESLint \u0026 Prettier**: Enforced code quality and consistency.\n- **Jest**: Setup for comprehensive testing.\n- **State Management**: Future-ready for Zustand with LocalStorage.\n- **Cross-Platform**: Build apps for iOS, Android, and Web effortlessly.\n\n---\n\n## **📖 Get Started**\n\n1. **Install dependencies**\n\n   You can use either **npm** or **bun** to install the project dependencies:\n\n   Using npm:\n   ```bash\n   npm install\n   ```\n\n   Using bun:\n\n   ```bash\n   bun install\n   ```\n\n2. **Start the app**\n\n   ```bash\n   npx expo start\n   ```\n\n     ```bash\n   bun start\n   ```\n\n3. **Explore development options**\n   After starting the app, you can choose from the following options:\n   - Open the app in a [Development Build](https://docs.expo.dev/develop/development-builds/introduction/)\n   - Use an [Android Emulator](https://docs.expo.dev/workflow/android-studio-emulator/)\n   - Try the app in an [iOS Simulator](https://docs.expo.dev/workflow/ios-simulator/)\n   - Test with [Expo Go](https://expo.dev/go)\n\n---\n\n## **🔄 Get a Fresh Project**\n\nWant to reset your project? Run:\n\n```bash\nnpm run reset-project\n```\n\n```bash\nbun run reset-project\n```\n\nThis command moves the starter code to the **app-example** directory and sets up a blank **app** directory for fresh development.\n\n---\n\n## **📂 Project Structure**\n\nYour project uses [file-based routing](https://docs.expo.dev/router/introduction/). Start developing by editing files in the **app** directory.\n\n```\nroot/\n├── app/                # Your app screens and components\n├── scripts/            # Utility scripts like reset-project\n├── node_modules/       # Dependencies\n├── package.json        # Project configuration\n└── README.md           # Project documentation\n```\n\n---\n\n## **📚 Learn More**\n\nDive deeper into Expo development with these resources:\n\n- [Expo Documentation](https://docs.expo.dev/): Comprehensive guides and documentation.\n- [Learn Expo Tutorial](https://docs.expo.dev/tutorial/introduction/): Build a cross-platform project step by step.\n- [File-Based Routing in Expo](https://docs.expo.dev/router/introduction/): Simplify navigation in your app.\n\n---\n\n## **🤝 Join the Community**\n\nConnect with the amazing Expo community:\n\n- **[Expo on GitHub](https://github.com/expo/expo)**: Explore and contribute to Expo's open-source ecosystem.\n- **[Discord Community](https://chat.expo.dev)**: Chat with developers and ask questions.\n\n---\n\n## **🧩 Package Scripts**\n\nHere are some helpful scripts to manage your Expo app:\n\n```json\n\"scripts\": {\n    \"start\": \"expo start --dev-client\",\n    \"reset-project\": \"node ./scripts/reset-project.js\",\n    \"android\": \"expo run:android\",\n    \"ios\": \"expo run:ios\",\n    \"web\": \"expo start --web\",\n    \"test\": \"jest --watchAll\",\n    \"lint\": \"bun eslint .\",\n    \"lint:fix\": \"bun eslint . --fix\",\n    \"format\": \"bun prettier --write '**/*.{js,jsx,ts,tsx,json,css,md}'\"\n}\n```\n\n### **Run the App in Simulators**\n\n- **For Android Simulator**:\n\n   ```bash\n   npm run android\n   ```\n\n   or\n\n   ```bash\n   bun run android\n   ```\n\n- **For iOS Simulator** (requires macOS):\n\n   ```bash\n   npm run ios\n   ```\n\n   or\n\n   ```bash\n   bun run ios\n   ```\n\n---\n\n## **🌐 Publish Your App**\n\nTo publish your app, use the following command:\n\n```bash\nnpx expo publish\n```\n\nThis will create a public link to your app that can be shared with others.\n\n---\n\n## **✨ Features in Development**\n\n- Integration with **Zustand** for state management.\n- LocalStorage for offline data persistence.\n\n---\n\n## **📄 License**\n\nThis project is licensed under the [MIT License](LICENSE). Feel free to use it in your own projects!\n\n---\n\n## **🚀 Ready to Build?**\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdharmveer97%2Freact-native-starter-kit-2024","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdharmveer97%2Freact-native-starter-kit-2024","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdharmveer97%2Freact-native-starter-kit-2024/lists"}