top of page
Writer's pictureJino Shaji

npm commands, React-native-cli commands

Updated: Jun 9, 2020


Installation Process.

  1. Install node package manager. which can be downloaded from the here

NPM commands for project




npm install -g create-react-native-app


create-react-native-app AwesomeProject cd AwesomeProject npm start

Running on stimulator ->npm run android for android and npm run ios for IOS

Yarn Commands


  1.  You can also install Yarn by executing the below command npm i -g yarn

  2. To create project in Yarn



 yarn global add create-react-native-app

  1. yarn start to run project


React-native-cli commands


1.

npm i -g react-native-cli

2.

react-native init AwesomeApp

3.

react-native run-android 
0 views0 comments

Recent Posts

See All

Redux-Thunk Small Overview

Introduction Redux Thunk middleware allows you to write action creators that return a function instead of an action. The thunk can be...

Comments


bottom of page