reactxp/samples/hello-world
David de Regt 148685062e Updated all extensions to v2.0.0 (2.1.0 for VLV), updating all their dependencies along the way. Then all samples to 2.0.0 to use the new 2.0.0/2.1.0 releases of everything. Fixed TodoList, which appears to have been unable to compile for a little while -- oops. 2019-11-30 01:33:59 -08:00
..
android update samples (#1149) 2019-10-10 10:00:38 -06:00
ios update samples (#1149) 2019-10-10 10:00:38 -06:00
jest update samples (#1149) 2019-10-10 10:00:38 -06:00
scripts update samples (#1149) 2019-10-10 10:00:38 -06:00
src eslint-plugin-reactxp (#1155) 2019-11-02 16:58:25 -07:00
web update samples (#1149) 2019-10-10 10:00:38 -06:00
windows update samples (#1149) 2019-10-10 10:00:38 -06:00
.eslintrc eslint-plugin-reactxp (#1155) 2019-11-02 16:58:25 -07:00
.gitignore update samples (#1149) 2019-10-10 10:00:38 -06:00
README.md Sample Project Readme.md - minor updates (#1029) 2019-02-18 17:54:59 -08:00
babel.config.js update samples (#1149) 2019-10-10 10:00:38 -06:00
index.js feature/update hello world (#882) 2018-10-25 21:51:04 -07:00
metro.config.js update samples (#1149) 2019-10-10 10:00:38 -06:00
package-lock.json Updated all extensions to v2.0.0 (2.1.0 for VLV), updating all their dependencies along the way. Then all samples to 2.0.0 to use the new 2.0.0/2.1.0 releases of everything. Fixed TodoList, which appears to have been unable to compile for a little while -- oops. 2019-11-30 01:33:59 -08:00
package.json Updated all extensions to v2.0.0 (2.1.0 for VLV), updating all their dependencies along the way. Then all samples to 2.0.0 to use the new 2.0.0/2.1.0 releases of everything. Fixed TodoList, which appears to have been unable to compile for a little while -- oops. 2019-11-30 01:33:59 -08:00
tsconfig.json update samples (#1149) 2019-10-10 10:00:38 -06:00

README.md

RXPHelloWorld

This app works on React Native (iOS, Android, Windows) and web. The commands in the instructions below assume you are in the root of this repo.

Building

  • From the hello-world directory, run npm install. This fetches the dependencies.

To run your app on Web:

npm run start:web

To build Web production version of your app:

npm run build:web

To run your app on iOS:

npm run start:ios
- or -

open ios/RXPHelloWorld.xcodeproj project in Xcode press the Run button

To run your app on Android:

Have an Android emulator running (quickest way to get started), or a device connected

npm run start:android
- or -

open android/ project in Android Studio press the Run button

To run your app on Windows:

npm run start:windows
- or -

open windows/RXPHelloWorld.sln project in Visual Studio press the Run button