Skip to content

Instantly share code, notes, and snippets.

@RidaRidss
Last active November 4, 2017 07:09
Show Gist options
  • Save RidaRidss/90758163cd2310db85c0935f6bcfc2d1 to your computer and use it in GitHub Desktop.
Save RidaRidss/90758163cd2310db85c0935f6bcfc2d1 to your computer and use it in GitHub Desktop.

Node.js

note :click on below link , install
https://nodejs.org/dist/v6.11.4/node-v6.11.4.pkg    
open terminal and run below commands
cd ~
npm update
node -v
npm -v

Yarn

sudo npm install -g yarn

React.js

open terminal and run below commands
sudo npm install -g react-native-cli

sudo npm install -g create-react-app

Autoconf , Automake

open terminal and run below commands
cd ~
curl -O -L http://ftpmirror.gnu.org/autoconf/autoconf-2.69.tar.gz
tar -xzf autoconf-2.69.tar.gz
cd autoconf-*
./configure
make
sudo make install
autoconf --version

cd ~
curl -O -L http://ftpmirror.gnu.org/automake/automake-1.15.tar.gz
tar -xzf automake-1.15.tar.gz
cd automake-*
./configure
make
sudo make install
automake --version

Watchman

open terminal and run below commands
cd ~
git clone https://github.com/facebook/watchman.git
cd watchman/
git checkout v4.7.0 
 ./autogen.sh 
./configure
make
sudo make install
watchman --version

Visual Studio Code

note :click on below link , install
https://code.visualstudio.com/docs/setup/mac

Xcode

install Xcode open your react native project in it , run and have fun
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment