Home > database >  Is there a way to something similar to a database but in the user device?
Is there a way to something similar to a database but in the user device?

Time:05-28

I want to try my first app using just html, css and javascript, and I want to keep it as simple as possible. So I want to know if there is a way to have something like a user side database to save data that the user modify in the app.

CodePudding user response:

You can use localstorage or create txt or json file save it on user device and retieve data from it

  • Related