No. | Questions |
---|---|
001 | What is the difference between React Native and React? |
002 | How to test React Native apps? |
003 | How to do logging in React Native? |
004 | How to debug your React Native? |
React is a JavaScript library, supporting both front end web and being run on the server, for building user interfaces and web applications.
React Native is a mobile framework that compiles to native app components, allowing you to build native mobile applications (iOS, Android, and Windows) in JavaScript that allows you to use React to build your components, and implements React under the hood.
React Native can be tested only in mobile simulators like iOS and Android. You can run the app in your mobile using expo app (https://expo.io) Where it syncs using QR code, your mobile and computer should be in same wireless network.
You can use console.log
, console.warn
, etc. As of React Native v0.29 you can simply run the following to see logs in the console:
$ react-native log-ios
$ react-native log-android
Follow the below steps to debug React Native app:
Command + D
and a webpage should open up at http://localhost:8081/debugger-ui
.Command + Option + I
to open the Chrome Developer tools, or open it via View
-> Developer
-> Developer Tools
.