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
2015-05-30 22:09:32 +00:00
1. OS X - This repo only contains the iOS (7+) implementation right now, and Xcode only runs on Mac.
2015-06-02 21:06:30 +00:00
2. [Xcode ](https://developer.apple.com/xcode/downloads/ ) 6.3 or higher is recommended.
2015-07-30 00:29:18 +00:00
3. [Homebrew ](http://brew.sh/ ) is the recommended way to install io.js, watchman, and flow.
4. Install [io.js ](https://iojs.org/ ) 1.0 or newer. io.js is the modern version of Node.
2015-09-09 22:12:58 +00:00
- Install **nvm** with [its setup instructions here ](https://github.com/creationix/nvm#installation ). To benefit from the changes to your .bashrc, close and reopen your terminal window. Then run `nvm install iojs-v2 && nvm alias default iojs-v2` , which installs the latest compatible version of io.js and sets up your terminal so that typing `node` runs io.js. With nvm you can install multiple versions of Node and io.js and easily switch between them.
2015-07-30 00:29:18 +00:00
- New to [npm ](https://docs.npmjs.com/ )?
2015-04-21 00:34:59 +00:00
5. `brew install 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
2015-07-30 00:29:18 +00:00
We recommend periodically running `brew update && brew upgrade` to keep your programs up-to-date.
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-09-10 04:08:58 +00:00
- Open `iOS/AwesomeProject.xcodeproj` and hit run in Xcode.
2015-04-22 02:45:38 +00:00
- 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-09-10 04:08:58 +00:00
Congratulations! You've 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 )._