{"id":21388528,"url":"https://github.com/monte9/reactnative-4-days","last_synced_at":"2025-08-17T21:34:33.464Z","repository":{"id":66129212,"uuid":"67014026","full_name":"Monte9/ReactNative-4-Days","owner":"Monte9","description":"There's more to learn in React Native","archived":false,"fork":false,"pushed_at":"2016-09-05T23:52:32.000Z","size":144,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-16T12:42:42.632Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Objective-C","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/Monte9.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2016-08-31T07:26:11.000Z","updated_at":"2017-05-19T08:52:16.000Z","dependencies_parsed_at":"2023-02-21T20:31:26.724Z","dependency_job_id":null,"html_url":"https://github.com/Monte9/ReactNative-4-Days","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Monte9/ReactNative-4-Days","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Monte9%2FReactNative-4-Days","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Monte9%2FReactNative-4-Days/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Monte9%2FReactNative-4-Days/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Monte9%2FReactNative-4-Days/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Monte9","download_url":"https://codeload.github.com/Monte9/ReactNative-4-Days/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Monte9%2FReactNative-4-Days/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270912460,"owners_count":24666737,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-17T02:00:09.016Z","response_time":129,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-11-22T12:18:23.591Z","updated_at":"2025-08-17T21:34:33.322Z","avatar_url":"https://github.com/Monte9.png","language":"Objective-C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# React Native 4 Days\n\nThis summer I got into React Native and absolutely loved it! Coming from an iOS background, it was not too difficult to learn and was hella fun. Although I could build a simple React Native app.. I wanted to dive deeper into React Native and be able to work on more complex apps with fancier UI's. Hence this repo.\n\nThis project is inspired by [30 Days of React Native](https://github.com/fangwei716/30-days-of-react-native). For the most part, I will be following the projects on the repo pretty closely.\n\n## Getting started\n\nYou will need Xcode, node.js, the React Native command line tools, and Watchman.\n\n1. Xcode: Get Xcode from the [App Store here](https://itunes.apple.com/us/app/xcode/id497799835?mt=12)\n2. node.js:\n\n    - If you're using OS X or Windows, the best way to install Node.js is to use one of the installers from the Node.js [download page here](https://nodejs.org/en/download/).\n    - Or install npm via homebrew like so: `brew install node`\n\n3. React Native command line tool: `npm install -g react-native-cli`\n4. Watchman: `brew install watchman`\n5. Finally create a new React Native app: `react-native init ReactNative4Days`\n\n[Refer to the React Native Getting Started documentation for more information](https://facebook.github.io/react-native/docs/getting-started.html)\n\n## Using CocoaPods\n1. Install CocoaPods: `gem install cocoapods`\n2. Init the pod file:\n    - `cd ios` (move into the ios directory within ReactNative4Days folder)\n    - `pod init`\n3. Add pod to the file:\n    - `atom Podfile` (or use any other text editor of your choice)\n    - add `pod 'JTSImageViewController'`\n4. Install pod: `pod install`\n5. Link Binaries:\n    - Click on the `ReactNative4Days.xcodeproj` on the left and select the `ReactNative4Days` target\n    - Go the `Build Phases` tab and search for `Link Binary with Libraries`\n    - Here add the .a file of the cocoapod you just added which is: `libJTSImageViewController.a`\n\n[Click here for a more detailed guide on how to use CocoaPods](https://shift.infinite.red/beginner-s-guide-to-using-cocoapods-with-react-native-46cb4d372995#.slozm6cn1)\n\n### Compile error while using Cocoapods (react-native version \u003e=0.26.0)\n\nIf you are using a `react-native` version `\u003e=0.26.0`, you might encounter the following error while trying to run the project using CoacoPods:\n\n```std::terminate(), referenced from: ___clang_call_terminate in libReact.a(RCTJSCExecutor.o)```\n\nReact Native introduced some C++ code so we need to tell **Xcode** to use those symbols for compile. First click **ReactNative4Days.xcodeproj** in the Project Navigator to show your project's target (you will have two targets.. app \u0026 tests). Then for each of the targets do the following:\n    \n    - Go the `Build Settings` tab, and make sure `All` is toggled on (instead of `Basic` or `Combined`)\n    - Look for `Other Linker Flags` and add the flag `-lc++` for all configurations\n\n([credit](https://github.com/auth0/react-native-lock#compile-error-react-native-0260))\n\n## License\n\nReact Native 4 Days is under the MIT license.\n\n## Contact me\n\nTwitter: [@Mthakkar_](https://twitter.com/MThakkar_)\n\nWebsite: http://montethakkar.com/\n\nLinkedIn: https://www.linkedin.com/in/montethakkar\n\nEmail: mthakkar@mail.sfsu.edu\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmonte9%2Freactnative-4-days","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmonte9%2Freactnative-4-days","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmonte9%2Freactnative-4-days/lists"}