For OS-X and iOS
-
Go to react native official documentation
-
got to getting started
- Xcode
- home-brew - used to install node
- Node - runs javascript outside the browser
- npm - used for installng and managing dependencies
- watchman - automatically updates the code base
- RN CLI - react native command line interface - npm install -g react-native-cli
-
Generate your first React-native project using react native CLI react-native init
Here's a walkthrough of implemented user stories:
To run your app on iOS: cd /Users/Tejas/React-Native/albums react-native run-ios
- or - Open ios/albums.xcodeproj in Xcode Hit the Run button To run your app on Android: cd /Users/Tejas/React-Native/albums Have an Android emulator running (quickest way to get started), or a device connected react-native run-android
