Skip to content

Starting a new React Native Project

Harley Trung edited this page Mar 1, 2017 · 1 revision

Testing your React Native Installation

Use the React Native command line interface to generate a new React Native project called "AwesomeProject", then run react-native run-ios inside the newly created folder.

  • Android
    • react-native init AwesomeProject
    • cd AwesomeProject
    • react-native run-android

If everything is set up correctly, you should see your new app running in your AVD shortly.

  • iOS
    • react-native init AwesomeProject
    • cd AwesomeProject
    • react-native run-ios

You should see your new app running in the iOS Simulator shortly.