September 2018
Beginner
156 pages
3h 28m
English
Let's get started by first installing the CLI:
npm install -g create-react-native-app
The preceding command installs the CLI in the global node_modules directory. The next step is to create a React Native project using the CLI:
create-react-native-app react-native-test-app
The react-native-test-app directory is created and all the required scripts are downloaded in the node_modules directory.
Now, when you run the npm start script, the build script starts packager and it generates a QR code and a URL for you to access the application on a real device (iOS or Android) or on the emulator. Also, you could launch the iOS or Android emulator if you have Xcode or Android Studio installed. ...
Read now
Unlock full access