Library for cross-platform app development.
Перейти к файлу
David de Regt b507c2667b Adding autocapitalize to web/RX.TextInput 2020-01-30 18:33:07 -08:00
docs 2.0.0 version bump and moving to using releases 2019-11-30 01:08:08 -08:00
extensions Replace TSLint on ESLint (#1175) 2020-01-13 12:58:22 -08:00
samples Fixing windows builds of todolist by switching to path-posix (#1178) 2020-01-13 22:42:26 -08:00
src Adding autocapitalize to web/RX.TextInput 2020-01-30 18:33:07 -08:00
.eslintrc.json Replace TSLint on ESLint (#1169) 2020-01-08 10:28:52 -08:00
.gitignore Fixed drag & drop handlers for RN windows (#377) 2017-12-09 09:38:36 -08:00
.npmignore Replace TSLint on ESLint (#1169) 2020-01-08 10:28:52 -08:00
.npmrc Start to use npm's package-lock feature. 2018-08-07 23:36:50 -06:00
.travis.yml Replace TSLint on ESLint (#1169) 2020-01-08 10:28:52 -08:00
CONTRIBUTING.md [TS] Improve dev experience on mobile (#1078) 2019-04-15 08:58:57 -07:00
LICENSE Updated License file as per Microsoft legal group. 2017-04-05 18:14:38 -07:00
README.md Replace TSLint on ESLint (#1169) 2020-01-08 10:28:52 -08:00
README_Hindi.md Replace TSLint on ESLint (#1169) 2020-01-08 10:28:52 -08:00
azure-pipelines.yml Replace TSLint on ESLint (#1169) 2020-01-08 10:28:52 -08:00
index.android.js Added source files. 2017-04-05 17:51:05 -07:00
index.ios.js Added source files. 2017-04-05 17:51:05 -07:00
index.js Added source files. 2017-04-05 17:51:05 -07:00
index.macos.js Basic MacOS support for ReactXP and reactxp-video. (#245) 2017-09-01 15:19:45 -07:00
index.windows.js Added source files. 2017-04-05 17:51:05 -07:00
package-lock.json Replace TSLint on ESLint (#1169) 2020-01-08 10:28:52 -08:00
package.json Replace TSLint on ESLint (#1169) 2020-01-08 10:28:52 -08:00
tsconfig.json Replace TSLint on ESLint (#1169) 2020-01-08 10:28:52 -08:00

README.md

ReactXP

GitHub license npm version Build Status Build Status npm downloads PRs Welcome Gitter

ReactXP is a library for cross-platform app development using React and React Native.

Why ReactXP

With React and React Native, your web app can share most of its logic with your iOS and Android apps, but the view layer needs to be implemented separately for each platform. We have taken this a step further and developed a thin cross-platform layer we call ReactXP. If you write your app to this abstraction, you can share your view definitions, styles and animations across multiple target platforms. Of course, you can still provide platform-specific UI variants, but this can be done selectively where desired.

Getting Started

The samples directory contains a minimal “Hello World” app that demonstrates some basic ReactXP functionality. You can use this as a starting point. Just follow the build instructions in the README file.

Also included in the samples directory is the RXPTest app which attempts to exercise all of the functionality of ReactXP. It is a good source to consult for sample usage of APIs, components, and props.

You can read more about ReactXP and its APIs from the ReactXP official Documentation.

Use the command-line tool called create-rx-app to create a starter project.

npm install create-rx-app -g
create-rx-app AppName

or

npx create-rx-app AppName

By default the project will be created in TypeScript. However if you prefer JavaScript instead, add --javascript when creating the project.

This will create a directory called AppName inside the current working directory. Inside AppName, this will generate the initial project structure and install all of its dependencies. Once this installation is done, there are some commands you can run in the project directory:

  • npm run start:web - runs the Web version of the app in the development mode
  • npm run build:web - builds the Web version of the app for production to the dist-web folder
  • npm run start:ios - runs the iOS version of the app and attempts to open in the iOS Simulator if you're on a Mac and have it installed
  • npm run start:android - runs the Android version of the app and attempts to open your app on a connected Android device or emulator
  • npm run start:windows - runs the Windows version of the app
  • npm start:rn-dev-server - runs react native (RN) development server

Prerequisites

ESLint rules

TSLint will be deprecated some time in 2019

If you plan to migrate your projects from TSLint to ESlint and want to continue using the rules to automate search common problems in ReactXP usage, you can use eslint-plugin-reactxp.

Contributing

We welcome contributions to ReactXP. See the CONTRIBUTING file for how to help out.

License

This project is licensed under the MIT License - see the LICENSE file for details