user7213391
user7213391

Reputation:

React Native: How to store chats client-side?

I'm currently building a social networking app with React Native for both, Android and iOS. The app will also allow the users to chat with each other. The chats should be available offline (like WhatsApp Messenger and Facebook Messenger).

What would be some of the ways, or the best way, to store the chats client-side?

Options I'm aware of:

Upvotes: 5

Views: 2754

Answers (1)

user10058084
user10058084

Reputation:

Aren't you worried that your app will be too 'heavy'? I can understand storing messages if messaging is not main feature of the app, but with social networking you'll need to store tons of messages on device. Does not look good from user experience. Try chat backend solution like ConnectyCube I used their ReactNative SDK and it worked just fine

Upvotes: 1

Related Questions