Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does react native enable live update without updating app?

Tags:

react-native

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?

like image 490
eugene Avatar asked Jan 29 '23 21:01

eugene


1 Answers

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.
like image 181
Bhavesh Goyal Avatar answered Feb 05 '23 16:02

Bhavesh Goyal