0

I want to use AsyncStorage in ReactJs(similar in react-native). I temporarily need to store data in localsotrage (more than 10mb). If there is any other solution please let me know. currently i'm using localstorage of reactjs but as per my research it is limited to 10mb in desktop browser.

1 Answer 1

1

You can go for IndexedDB which is compatible with all modern browsers. The minimum or soft limit is 5MB- the browser will ask for permission to store the data. Maximum storage is the limit of your hard drive disk, as all of the data is stored locally on your machine disk.

You could check IndexedDB docs here

You could check the compatibility across the browser here

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.