DanDance
DanDance

Reputation: 147

React Native replace bundle.js

Is it possible to make a native modules, that can replace main.bundle.js inside application? If UI changes user will not have to update application, application will just pull new js bundle.

Upvotes: 0

Views: 886

Answers (1)

Daniel Basedow
Daniel Basedow

Reputation: 13396

Yes. There already are some libraries that do exactly that.

react-native-auto-updater is only the client part that does the update on the device. CodePush on the other hand is a complete solution that also helps you distribute your code.

Upvotes: 1

Related Questions