2015-02-12 04:26:43 +00:00
---
id: getting-started
title: Getting Started
layout: docs
category: Quick Start
permalink: docs/getting-started.html
2015-03-25 09:08:09 +00:00
next: tutorial
2015-02-12 04:26:43 +00:00
---
## Requirements
1. OS X - This repo only contains the iOS implementation right now, and Xcode only runs on Mac.
2. New to Xcode? [Download it ](https://developer.apple.com/xcode/downloads/ ) from the Mac App Store.
3. [Homebrew ](http://brew.sh/ ) is the recommended way to install node, watchman, and flow.
2015-03-26 21:57:33 +00:00
4. `brew install node` . New to [node ](https://nodejs.org/ ) or [npm ](https://docs.npmjs.com/ )?
2015-04-02 22:04:05 +00:00
5. `brew install --HEAD watchman` . We recommend installing [watchman ](https://facebook.github.io/watchman/docs/install.html ), otherwise you might hit a node file watching bug.
2015-03-25 19:56:31 +00:00
6. `brew install flow` . If you want to use [flow ](http://www.flowtype.org ).
2015-02-12 04:26:43 +00:00
## Quick start
2015-03-25 19:56:31 +00:00
- `npm install -g react-native-cli`
- `react-native init AwesomeProject`
2015-02-12 04:26:43 +00:00
2015-03-25 19:56:31 +00:00
In the newly created folder `AwesomeProject/`
2015-02-12 04:26:43 +00:00
2015-03-25 19:56:31 +00:00
- Open `AwesomeProject.xcodeproj` and hit run in Xcode
- Open `index.ios.js` in your text editor of choice and edit some lines
2015-04-08 16:26:17 +00:00
- Hit cmd+R in your iOS simulator to reload the app and see your change!
2015-02-12 04:26:43 +00:00
2015-03-25 19:56:31 +00:00
Congratulations! You've just successfully run and modified your first React Native app.
2015-02-12 04:26:43 +00:00
2015-03-30 20:09:11 +00:00
_If you run into any issues getting started, see the [troubleshooting page ](/react-native/docs/troubleshooting.html#content )._