Forrest logo
back to context overview

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-android
    try on your machine
    explain this command
  • react-native:tldr:742b9 react-native: Start `tail system.log` for an iOS simulator and print logs to `stdout`.
    $ react-native log-ios
    try on your machine
    explain this command
  • react-native:tldr:76f69 react-native: Start `logkitty` and print logs to `stdout`.
    $ react-native log-android
    try on your machine
    explain 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 machine
    explain this command
  • react-native:tldr:dd6f9 react-native: Build the current application and start it on an iOS simulator.
    $ react-native run-ios
    try on your machine
    explain 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 machine
    explain this command
back to context overview