I'm getting familiar with React Native and I've had an app working on simulator and device.
On both cases the node.js server is running on my local machine, and it is required in order for the app to run. I understand that for a release version of the app I would have to have a stable and reliable node server running somewhere (AWS), and have my app point at that.
However, can the app be bundled, somehow, with a node server? This way the app can run offline at any time.
This is probably harder on iOS than it'll be on Android, but I wanted to know what your thoughts were on this.
Thanks!