social.lol is one of the many independent Mastodon servers you can use to participate in the fediverse.
social.lol is a lighthearted social hangout for the omg.lol community.

Administered by:

Server stats:

840
active users

Blake Watson :prami:

What is the simplest solution for persisting user data?

I frequently run into a situation where I’ve built a neat little frontend app but need to persist some user data. My first instinct is to stick it in local storage, which is cool and totally works. But it’s at risk of being deleted by the browser and it’s not portable to other browsers or devices.

Things I’ve used:

- PHP/MySQL
- PHP/SQLite
- NodeJS/SQLite
- JSON files
- Userbase (third-party service)
- I’ve even used paste.lol as a BE

@jak2k Yeah I’m keeping my eye on this one. It looks great.

@bw I agree demo kv is probably the easiest and most flexible. Plus you run it yourself or have deno land run it. But that’s if a kv store is appropriate. If data is relational I’ve done SQLite as WAsM in deno for my Dropserver apps. Seems to work just fine though I wouldn’t do that if storing thousands of users data!

@raucao Yeah I do like the idea of users bringing their own data storage. For one, it takes the responsibility off of me, the app developer, to keep everyone’s data safe.