https://github.com/nbkhope/getting-started-react-native
Getting started with React Native for mobile development
https://github.com/nbkhope/getting-started-react-native
react-native
Last synced: about 1 year ago
JSON representation
Getting started with React Native for mobile development
- Host: GitHub
- URL: https://github.com/nbkhope/getting-started-react-native
- Owner: nbkhope
- License: mit
- Created: 2016-06-16T22:10:58.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2019-12-25T19:58:09.000Z (over 6 years ago)
- Last Synced: 2025-04-30T07:06:15.813Z (about 1 year ago)
- Topics: react-native
- Language: Objective-C
- Size: 631 KB
- Stars: 8
- Watchers: 0
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# getting-started-react-native
Getting started with React Native for mobile development

## Presentation Slides
[Click here](https://docs.google.com/presentation/d/1fQMSvoDdO-2ZY1dfsJRbrt3V3pcIKbQPt9OdgpZZL58/edit?usp=sharing)
## Quick Guide (iOS on Mac OS X)
You will need to have Brew and Xcode already installed. Make sure to also have the Chrome browser installed.
```
# Install Node.js
brew install node
# Install Watchman
brew install watchman
# Install React Native Comand Line Tools
npm install -g react-native-cli
```
I suggest you use [Atom](https://atom.io/) instead of Sublime due to better syntax highlighting for JavaScript.
Now, you can create a new project:
```
react-native init MyProject
# Go to the project directory and run it
cd MyProject
react-native run-ios
```
The entry point for your app will be in the file `index.ios.js`
### Note: running the finished MyProject example in this repository
If you wish to run the example app in this repository without creating your own project, **cd** to MyProject and run
```
npm install
```
That will install all the package dependencies necessary for the app. Then, follow the instructions above to call `react-native run-ios`.
## Step-By-Step Guide (Building First App)
[Click here](GUIDE.md)