Skip to content

Commit 8233787

Browse files
committed
[Docs] Update installation docs to reference io.js instead of Node
It's pretty straightforward -- io.js is available through Homebrew so all you run is `brew install iojs` and then you can still run `node` from the command line. Also mentioned nvm since it's really good for switching between Node/io.js versions.
1 parent 9617816 commit 8233787

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/EmbeddedApp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Since React makes no assumptions about the rest of your technology stack – it
1212
## Requirements
1313

1414
- [CocoaPods](http://cocoapods.org/)`gem install cocoapods`
15-
- [Node.js](http://nodejs.org)`brew install node`
15+
- [io.js](http://iojs.org)`brew install iojs` or from [nvm](https://github.com/creationix/nvm)
1616

1717
## Install React Native Using CocoaPods
1818

docs/GettingStarted.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ next: tutorial
1212
1. OS X - This repo only contains the iOS (7+) implementation right now, and Xcode only runs on Mac.
1313
2. [Xcode](https://developer.apple.com/xcode/downloads/) 6.3 or higher is recommended.
1414
3. [Homebrew](http://brew.sh/) is the recommended way to install node, watchman, and flow.
15-
4. `brew install node`. New to [node](https://nodejs.org/) or [npm](https://docs.npmjs.com/)?
15+
4. `brew install iojs`. New to [io.js](https://iojs.org/) or [npm](https://docs.npmjs.com/)?
1616
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.
1717
6. `brew install flow`. If you want to use [flow](http://www.flowtype.org).
1818

docs/Tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ We assume you have experience writing websites with React. If not, you can learn
1616

1717
## Setup
1818

19-
React Native requires OSX, Xcode, [Homebrew](http://brew.sh/), node (we recommend installing this via Homebrew), npm (installed automatically with node), and [watchman](https://facebook.github.io/watchman/docs/install.html). [Flow](https://github.com/facebook/flow) is optional.
19+
React Native requires OSX, Xcode, [Homebrew](http://brew.sh/), io.js (we recommend installing this via [nvm](https://github.com/creationix/nvm) or Homebrew), npm (installed automatically with io.js), and [watchman](https://facebook.github.io/watchman/docs/install.html). [Flow](https://github.com/facebook/flow) is optional.
2020

2121
After installing these dependencies there are two simple commands to get a React Native project all set up for development.
2222

@@ -31,7 +31,7 @@ After installing these dependencies there are two simple commands to get a React
3131

3232
## Development
3333

34-
You can now open this new project (`AwesomeProject/AwesomeProject.xcodeproj`) in Xcode and simply build and run it with cmd+R. Doing so will also start a node server which enables live code reloading. With this you can see your changes by pressing cmd+R in the simulator rather than recompiling in Xcode.
34+
You can now open this new project (`AwesomeProject/AwesomeProject.xcodeproj`) in Xcode and simply build and run it with cmd+R. Doing so will also start a Node server which enables live code reloading. With this you can see your changes by pressing cmd+R in the simulator rather than recompiling in Xcode.
3535

3636
For this tutorial we'll be building a simple version of the Movies app that fetches 25 movies that are in theaters and displays them in a ListView.
3737

0 commit comments

Comments
 (0)