{"id":28281516,"url":"https://github.com/techstackspace/react-native-projects","last_synced_at":"2026-04-17T11:31:39.063Z","repository":{"id":292429152,"uuid":"980844713","full_name":"techstackspace/react-native-projects","owner":"techstackspace","description":"A collection of independent React Native applications, each maintained on its own branch. This structure allows for isolated development and experimentation with various features, libraries, and architectural patterns.","archived":false,"fork":false,"pushed_at":"2025-06-10T19:39:07.000Z","size":4528,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-10T20:39:29.670Z","etag":null,"topics":["expo","react","react-native","techstackspace"],"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/techstackspace.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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,"zenodo":null},"funding":{"github":["techstackspace"],"custom":["https://dashboard.flutterwave.com/donate/tm2wng7djkuv"]}},"created_at":"2025-05-09T20:17:10.000Z","updated_at":"2025-05-12T11:32:31.000Z","dependencies_parsed_at":"2025-05-09T23:25:41.289Z","dependency_job_id":"f709466f-4648-40bc-87cf-a60100199a47","html_url":"https://github.com/techstackspace/react-native-projects","commit_stats":null,"previous_names":["techstackspace/react-native-projects"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/techstackspace/react-native-projects","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techstackspace%2Freact-native-projects","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techstackspace%2Freact-native-projects/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techstackspace%2Freact-native-projects/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techstackspace%2Freact-native-projects/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/techstackspace","download_url":"https://codeload.github.com/techstackspace/react-native-projects/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techstackspace%2Freact-native-projects/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31927696,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T10:35:34.458Z","status":"ssl_error","status_checked_at":"2026-04-17T10:35:09.472Z","response_time":62,"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":["expo","react","react-native","techstackspace"],"created_at":"2025-05-21T12:13:08.904Z","updated_at":"2026-04-17T11:31:39.057Z","avatar_url":"https://github.com/techstackspace.png","language":"TypeScript","funding_links":["https://github.com/sponsors/techstackspace","https://dashboard.flutterwave.com/donate/tm2wng7djkuv"],"categories":[],"sub_categories":[],"readme":"# Movie Collection App Setup\n\n[![YouTube](https://img.shields.io/badge/YouTube-Channel-FF0000?style=social\u0026logo=youtube)](https://www.youtube.com/@techstackmedia)\n\nA complete setup guide including Brewfile, Git, shell configuration (e.g., `.zshrc`), package managers (npm/bun), and environment variables for Mac.\n\n---\n\n## 1. Switch to `zsh` Shell (Optional but Recommended)\n\nTo confirm the default shell:\n\n```bash\necho $SHELL\n```\n\nList all available shells:\n\n```bash\ncat /etc/shells\n```\n\nTo switch to `zsh` (if not already using it):\n\n```bash\nchsh -s /bin/zsh\n```\n\nYou may need to restart your terminal session for changes to take effect.\n\n---\n\n## 2. Download Project ZIP Files from GitHub\n\nDownload the movie app and API project ZIP files to the `Documents` directory:\n\n### Movie App\n\n```bash\ncd ~/Documents\ncurl -L -o react-native-projects.zip https://github.com/techstackspace/react-native-projects/archive/refs/heads/feature/01-movie-collection-app.zip\nunzip react-native-projects.zip\ncd ~/Documents/react-native-projects-feature-01-movie-collection-app\n```\n\n### API\n\nThe backend code is available in the [feature/01-movie-collection-api](https://github.com/techstackspace/express-projects/tree/feature/01-movie-collection-api) branch.\n\n```bash\ncd ~/Documents\ncurl -L -o express-projects.zip https://github.com/techstackspace/express-projects/archive/refs/heads/feature/01-movie-collection-api.zip\nunzip express-projects.zip\ncd ~/Documents/express-projects-feature-01-movie-collection-api\n```\n\n---\n\n## 3. Install Homebrew (If Not Installed)\n\nInstall Homebrew:\n\n```bash\n/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)\"\n```\n\n---\n\n## 4. Brewfile Installation\n\n### If `Brewfile` is in the same directory:\n\n```bash\nbrew bundle\n```\n\n### If `Brewfile` is in another directory:\n\n```bash\nbrew bundle --file=~/Documents/react-native-projects-feature-01-movie-collection-app/Brewfile\n```\n\nFeel free to modify the `Brewfile` to add or remove dependencies as needed.\n\n---\n\n## 5. Install Dependencies\n\n### Using Bun (preferred):\n\n```bash\nbun install\n```\n\n### Or using npm:\n\n```bash\nnpm install\n```\n\n\u003e Delete `bun.lockb` if switching to `npm` via `nvm`.\n\n---\n\n## 6. Set Up Git (If Not Already Configured)\n\nCheck Git configuration:\n\n```bash\ngit config --list\n```\n\nIf needed, configure Git globally:\n\n```bash\ngit config --global user.name \"Your Name\"\ngit config --global user.email \"your.email@example.com\"\n```\n\n---\n\n## 7. Uninstall Brewfile Apps\n\nTo remove all installed apps not in the Brewfile:\n\n```bash\nbrew bundle cleanup --force\n```\n\nAlternatively, delete unwanted apps manually or remove entries from the `Brewfile` and rerun the command above.\n\n---\n\n## 8. Install `nvm` or `bum`\n\n### Install `nvm`:\n\n```bash\ncurl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash\n```\n\n\u003e Replace `v0.40.3` with the [latest release version](https://github.com/nvm-sh/nvm/releases).\n\n### Install `bum`:\n\n```bash\ncurl -fsSL https://github.com/owenizedd/bum/raw/main/install.sh | bash\n```\n\n---\n\n## 9. Environment Variable Configuration for Android and `nvm`\n\nEdit your `~/.zprofile` and add the following between **Amazon Q pre block** and **Amazon Q post block**:\n\n```bash\n# Amazon Q pre block\n\n# Brew environment variable\n\n# Android SDK Setup\nexport ANDROID_HOME=$HOME/Library/Android/sdk\nexport PATH=$PATH:$ANDROID_HOME/emulator\nexport PATH=$PATH:$ANDROID_HOME/platform-tools\n\n# nvm Setup\nexport NVM_DIR=\"$HOME/.nvm\"\n[ -s \"$NVM_DIR/nvm.sh\" ] \u0026\u0026 \\. \"$NVM_DIR/nvm.sh\"  # Loads nvm\n[ -s \"$NVM_DIR/bash_completion\" ] \u0026\u0026 \\. \"$NVM_DIR/bash_completion\"  # Loads bash_completion for nvm\n\n# bum Setup (Bun Version Manager)\nexport BUM_DIR=\"$HOME/.bum\"\nexport PATH=\"$BUM_DIR/bin:$PATH\"\n\n# Load bum-managed Bun version (if any)\nif [ -f \"$BUM_DIR/version\" ]; then\n  BUN_VERSION=$(cat \"$BUM_DIR/version\")\n  export PATH=\"$BUM_DIR/versions/$BUN_VERSION/bin:$PATH\"\nfi\n\n# Amazon Q post block\n```\n\nThen apply the changes:\n\n```bash\nsource ~/.zprofile\n```\n\n---\n\n## 10. Running the React Native Project\n\nTo start the React Native project, use:\n\n```bash\nbun start\n```\n\nFor iOS:\n\n```bash\ni\n```\n\nFor Android:\n\n```bash\na\n```\n\nTo run on a physical device, scan the QR code displayed in the terminal using the Expo app or your iPhone camera (recommended for accurate testing).\n\n---\n\n## 11. Resources:\n\nHere are the core resources of this project:\n\n- [React Native Docs](https://reactnative.dev/docs/getting-started) – Official documentation for setting up and building apps with React Native.\n- [Bun Documentation](https://bun.sh/docs) – Learn how to use Bun, an all-in-one JavaScript runtime and toolkit.\n- [Bum GitHub Repo](https://github.com/owenizedd/bum) – Documentation for Bum, a fast Bun version manager written in Rust.\n- [Node.js Documentation](https://nodejs.org/docs/latest/api/) – Official API documentation for Node.js.\n- [nvm GitHub Repo](https://github.com/nvm-sh/nvm) – Node Version Manager for managing multiple Node.js versions.\n- [Homebrew](https://brew.sh) – Package manager for macOS and Linux, useful for installing dependencies like Watchman, Git, Android Studio, etc.\n- [Expo Documentation](https://docs.expo.dev/) – Comprehensive docs for using Expo CLI, managed workflows, development builds, and more.\n- [Android Studio](https://developer.android.com/studio) – Official IDE for Android development, required for building and testing React Native apps on Android.\n- [Figma Help Center](https://help.figma.com/hc/en-us) – Comprehensive guides and tutorials for using Figma effectively.\n\n---\n\n## 12. Feedback \u0026 Suggestions\n\nYour feedback is incredibly valuable and helps improve these resources for the entire community.\n\nWhether you've followed a tutorial, read the documentation, watched a video, or used a script—I'd love to hear your thoughts!\n\n### What you can share:\n\n- What worked well for you?\n- What was unclear or confusing?\n- Suggestions for improvement or new topics?\n- Bugs or outdated instructions?\n\n### Submit your feedback here:\n\n[Submit Feedback Form](https://techstackspace.com/feedback)\n\nYour input helps shape better content for developers like you. Thank you!\n\n---\n\n## 13. Social Media\n\nFollow us on social media:\n\n- [![Instagram](https://img.shields.io/badge/Instagram-Profile-8a3ab9?style=social\u0026logo=instagram)](https://instagram.com/techstackmedia)\n- [![Threads](https://img.shields.io/badge/Threads-Profile-8a3ab9?style=social\u0026logo=threads)](https://www.threads.net/@techstackmedia)\n- [![Facebook](https://img.shields.io/badge/Facebook-Page-1877F2?style=social\u0026logo=facebook)](https://www.facebook.com/techstackmedia)\n- [![TikTok](https://img.shields.io/badge/TikTok-Profile-black?style=social\u0026logo=tiktok)](https://www.tiktok.com/@techstackmedia)\n- [![YouTube](https://img.shields.io/badge/YouTube-Channel-FF0000?style=social\u0026logo=youtube)](https://www.youtube.com/@techstackmedia)\n- [![X](https://img.shields.io/badge/twitter-Profile-000000?style=social\u0026logo=x)](https://x.com/techstackmedia)\n\n---\n\n## 15. Figma Design Reference\n\nYou can explore the official Figma design for this project using the link below. This design provides a clear visual reference for the UI layout and styling used throughout the app.\n\n🔗 [View the Figma Design for the Movie App](https://www.figma.com/design/c6NHYQem8G59odVSijIjl2/Movie-App-w--React-Native?node-id=2-2\u0026p=f\u0026t=JfR5tnQWWcgYwXHd-0)\n\nHere is the Figma design:\n\n### Home Screen\n\n![Home Screen](https://res.cloudinary.com/dv6yqup4h/image/upload/v1746226435/Figma/MovieCollections/home-screen_xq1oxl.png)\n\n### Search Screen\n\n![Search Screen](https://res.cloudinary.com/dv6yqup4h/image/upload/v1746226448/Figma/MovieCollections/search-screen_ma1sp1.png)\n\n### Detail Screen\n\n![Detail Screen](https://res.cloudinary.com/dv6yqup4h/image/upload/v1746226441/Figma/MovieCollections/detail-screen_idgtxr.png)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechstackspace%2Freact-native-projects","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftechstackspace%2Freact-native-projects","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechstackspace%2Freact-native-projects/lists"}