-
Notifications
You must be signed in to change notification settings - Fork 239
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Possibility of adapting for React Native #168
Comments
That's exactly the thought, that I had and I'am currently using the persistence in memory adapter to implement a simple app ( working fine so far ) My Idea was to create a persistencejs adapter, that uses the react-native AsyncStorage ... |
Good to know it works already! asyncstorage is also a good idea, I'm just sqlite as there's already an adapter and I need SQL behavior at times. Here's the adapter I'm using now: |
And is it possible to use this adapter with persistencejs? |
Not out of the box, but it's not much work to adapt. I'll take a look! |
React Native runs in javascriptcore, but already has an adapter for SQLite. Could persistence.js work in it, given a proper adapter?
The text was updated successfully, but these errors were encountered: