Home > Blockchain >  Should I use Local Web Storage as a Database for a small website?
Should I use Local Web Storage as a Database for a small website?

Time:07-11

I am creating a forums website for a roleplay with my friends and not many people are going to use it. But I want to add a feature of user creation, deletion and login/logout.

Should I use Local Web Storage of the browser as a database for that or should I look into other alternatives?

Thank you in Advance

CodePudding user response:

No. You should buy an online service, e.g. AWS Cloud Databases. And you also need an online web server.

Local storage is unreliable, and easy to lose when cleaning browser caches.

CodePudding user response:

If you are new and want to experiment, you can try using services like AWS amplify. You can build full blown website without having to worry about storage or anything. Also you don't have to worry on pricing as it would cost based on the usage and ideally cost nothing as you can use the free tier.

  • Related