Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit 4b3bb39

Browse files
committed
Update README.md
Add How It Works section to sync with Cordova project
1 parent 49f6f67 commit 4b3bb39

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
11
react-native-code-push
22
===
33

4-
React Native module for deploying script updates using the CodePush service.
4+
This plugin provides integration with the CodePush service, allowing you to easily update your React Native application to enable live app updates.
5+
6+
Supported platforms
7+
---
8+
9+
- iOS
10+
- Coming soon: Android
11+
12+
How does it work?
13+
---
14+
15+
A React Native application's assets (JavaScript code and other resources) are traditionally bundled up as a ```.jsbundle``` file which is loaded from the application installation location on the target device during runtime. After you submit an update to the store, the user downloads the update, and those assets will be replaced with the new assets.
16+
17+
CodePush is here to simplify this process by allowing you to instantly update your application's assets without having to submit a new update to the store. We do this by allowing you to upload and manage your React Native app bundles on our CodePush server. In the application, we check for the presence of updated bundles on the server and install and persist them to the internal storage of the device if they are available. If a new bundle is installed, the application will reload from the updated package location.
18+
19+
For an easy way to get started, please see our [demo application](/Examples/CodePushDemoApp) and our [getting started guide](#getting-started).
520

621
Installation
722
---

0 commit comments

Comments
 (0)