
react-native
List of commands for react-native:
-
react-native:tldr:62dac react-native: Build the current application and start it on a connected Android device or emulator.$ react-native run-androidtry on your machineexplain this command
-
react-native:tldr:742b9 react-native: Start `tail system.log` for an iOS simulator and print logs to `stdout`.$ react-native log-iostry on your machineexplain this command
-
react-native:tldr:76f69 react-native: Start `logkitty` and print logs to `stdout`.$ react-native log-androidtry on your machineexplain this command
-
react-native:tldr:7c4b5 react-native: Initialize a new React Native project in a directory of the same name.$ react-native init ${project_name}try on your machineexplain this command
-
react-native:tldr:dd6f9 react-native: Build the current application and start it on an iOS simulator.$ react-native run-iostry on your machineexplain this command
-
react-native:tldr:fd890 react-native: Build the current application in `release` mode and start it on a connected Android device or emulator.$ react-native run-android --variant=${release}try on your machineexplain this command