DEV Community

Discussion on: What's the best way to store data for my very basic app?

Collapse
 
webdeasy profile image
webdeasy.de

Hey!
Check out the Cordova framework: cordova.apache.org/

You can create a "webapp" using html, css and javascript and cordova can convert it to a android and/or iOS app.

It's very simple and then you can store your data in the localStorage of javascript: developer.mozilla.org/de/docs/Web/...
The localstorage is like a cache on your phone.

If you have any questions, feel free to ask :)

Collapse
 
smh30 profile image
Stephanie Hope

Thanks, localStorage looks like it might be just what I need! I guess I just didn't know what to search for to find out it existed.