react-native(ignite) on Debian 10

react-native getting started on android

  1. install node/npm
    curl -sSL https://deb.nodesource.com/setup_8.x | sudo -E bash -
    sudo apt-get install -y nodejs
    
  2. install react-native-cli && ignite(reactotron)
    $ npm install -g react-native-cli
    $ npm install -g ignite-cli
    
    • Reactotron(download, unzip, run reactotron; install dependencies if nessary)
  3. create react-native project with ignite
    $ ignite new PizzaApp
    
  4. react-native run
    $ npm start
    # run avd from android studio, or use a command as below ?
    $ ~/Android/Sdk/tools/emulator -avd Nexus_5X_API_23 -netdelay none -netspeed full
    $ react-native run-android
    
  5. reference and tips