Development environment - mjvanhaastert/flowzo GitHub Wiki

chocolatey The package manager for Windows

choco install -y nodejs.install python2 jdk8

If you have already installed Node on your system, make sure it is version 6 or newer. If you already have a JDK on your system, make sure it is version 8 or newer.

Make sure you have nodejs install nodejs

The React Native CLI Node comes with npm, which lets you install the React Native command line interface. Run the following command in a Command Prompt or shell:

npm install -g react-native-cli

Modifying your app

Now that you have successfully run the app, let's modify it.

Open App.js in your text editor of choice and edit some lines. Press the R key twice or select Reload from the Developer Menu (Ctrl + M) to see your changes!

Install android studio

Setting up a project

react-native init AwesomeProject

Running your React Native application

Run react-native run-android inside your React Native project folder:

cd AwesomeProject react-native run-android