eugene
eugene

Reputation: 41685

Does react native enable live update without updating app?

I saw somewhere that you can update your code live in production with react-native (I can't remember where I saw it)

However, the javascript is bundled and packaged with the app, I don't think you can update javascript code without a new release.

Does react-native enable you to live update your js code in production or not?

Upvotes: 6

Views: 7893

Answers (1)

Bhavesh Goyal
Bhavesh Goyal

Reputation: 106

Ya you can manage it with expo or you can use third party continuous deployment tools like code-push from Microsoft.

https://github.com/Microsoft/react-native-code-push

  • you can easily manage Staging and Production and environment.
  • you can roll out to some percentage.
  • can revert back.
  • all the js code can be updated but no native code.Otherwise you may face crashing issues.

Upvotes: 9

Related Questions