Run the App
Development mode
To run the app in development mode with hot module replacement (HMR) activated
npm run start
This command will start the app on port 8100 and host 0.0.0.0 so you can easily access from other devices on your wifi network
Production mode
npm run start:prod
Same as above but with production bundle and no HMR
iOS
npm run serve:ios
Same as development mode but will also open the IDE so you can execute the app in device. Make sure to have set up the iOS environment.
Android
npm run serve:android
Same as development mode but will also open the IDE so you can execute the app in device. Make sure to have set up the Android environment.