No logins. No accounts. PrefsDB is a localStorage alternative that is persistent, secure, and works across devices. Perfect for indie devs, static pages, prototypes, hobby apps.
No account to create. No sign-ups. Store data securely with on-the-fly generated isolated API keys. Find out more.
Support all your front-end's persistence needs without a backend. No databases to create and maintain.
You get unlimited egress, users, and bandwidth. No surprise fees like compute charges or per-byte data transfer costs.
Each project is protected by an isolated API Key, built-in RLS, and full end-to-end encryption.
Your users, your apps - your data. All managed data can be backed up, exported, and imported.
Data stored with prefs.us is persistent, survives device data wipes, and handles device switching.
βit's like LocalStorage - but better! My static pages now have a database backend!β
βPerfect for my side projects. I didn't want to run a database just to store a few settings.β
βI use it for prototypes, demos, and hackathons. Simple API and super reliable.β
βSetting up a database every time I need some storage is so redundant.β
.key("settings").write(theme);
.key("settings").read( (response) => {
theme = response.value;
});
.list("signups").add(email);
.list("signups").read( (response) => {
emails = response.values;
});
.setItem("user", data);
.getItem("user", (response)=>{
data = response.value;
});
.bucket("name")
.key("name")
.put_object(data);
.bucket("name")
.key("name")
.get_object( (response) => {
obj = response.value;
});
.key("myObj")
.write(JSON.stringify(obj));
.key("myObj").read()
.then((response) => response.json())
.then((data) => {
obj = JSON.parse(data.value);
});
A simple dashboard helps you manage your API keys. You can review stored data, monitor data ingress and egress, and other metrics.
This service is currently under developemnt. An account is not required to use the PrefsDB API although certainly there are some benefits to having one.
Pre-launch accounts (willing to put up with beta SaaS) will enjoy all these perks forever.
No egress limits
50 MB File Storage*
Unlimited users+projects
Unlimited bandwidth
No compute charges
* Limits loosely enforced depending on system stress. Can be bumped up upon request.
Stop worrying about databases for your side projects.