Ways to store user's data locally

What ways are there to save user’s input data locally so that it exists even when the app is closed. I’m currently looking at an SQLite package but any other ways?

You can use the Storage API. https://www.fusetools.com/learn/fusejs#storage

One way to do it is to read and write serialized JSON with JSON.parse and JSON.stringify.

Will have a look, thankyou. :slight_smile: