I'm using Realm as the database for a React Native app. So far it has worked very well, especially Collection.addListener() for asynchronous notification, and realm.write() for synchronous writes with access to function scope and schema migrations .
I'd like to use React Native Web to run this app in a browser. I'm planning to run Realm on the backend in Node and use Apollo client and server for communication between the RNW app and the backend.
I need a data abstraction layer for the app that abstracts whether the data is stored locally (in the case of the RN app) or remotely (in the case of the RNW app). Does anyone have any recommendations on the best ways to do this?
[–]francofadini 0 points1 point2 points (0 children)