What Lightweight Database Can I Use for a Personal To-Do List?

0
15
Asked By CoolGiraffe37 On

I'm working on a personal to-do list that I want to keep synced across all my devices. My site is static and hosted on Vercel. I was using Supabase, but I'm looking for something lighter. I only need to store my to-dos, and I prefer not to pay for hosting or self-hosting as that's why I initially chose Supabase. I even considered storing JSON in Pastebin, but their API doesn't allow editing. What would be a good service for this?

5 Answers

Answered By OptimisticPaladin On

Have you thought about using Google Sheets? It's a straightforward option that provides you with file storage and their API is decent for reading data. Plus, you probably already have a Gmail account which makes it convenient!

ChillCat88 -

Yeah, I think it could work. It's pretty accessible and has a lot of free storage. Totally worth trying!

CleverBeagle42 -

Airtable is another option with a nice API, and it might be more user-friendly for managing your tasks!

Answered By AnonymousInnovator On

I have used AWS Parameter Store to hold small states, which could work for a lightweight JSON database. You can store parameters for your tasks without incurring costs for API calls. Keep in mind the size limitations though, but it could support your needs pretty well!

DataDrivenDude -

That sounds interesting! Just make sure the data management suits your workflow.

Answered By CuriousCoder On

What about using a cloud file storage service like Dropbox? You can store your to-dos in a text or JSON file and access it across all your devices.

Answered By DataDynamo On

For a lightweight approach, check out JSONBin. It’s designed to store and retrieve JSON easily and could be a perfect fit for your to-do list!

Answered By PracticalNerd99 On

You might want to try a static file for your to-dos, but then hosting can be tricky if you need it to sync between devices. Google Drive also has an API that could work for this, allowing you to read and write files as needed.

TechieTraveler -

True, just ensure your file is accessible and you handle your data securely!

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.