Json-Base – Database built as JSON files
github.com
Json-Base – Database built as JSON files
1–10 of 189 posts
Re: Json-Base – Database built as JSON files
#2Aaah the beginners project to store info without having an actual database.
Re: Json-Base – Database built as JSON files
#3Aaah the beginners project to store info without having an actual database.
SQLite with the JSON extension works well.
Re: Json-Base – Database built as JSON files
#4Back in the day, we used to use CSV for this :)
Re: Json-Base – Database built as JSON files
#5Re: Json-Base – Database built as JSON files
#6There are many use-cases for this for super simple ma-pa shops. It may be relegated 100% to shopping carts and checkout processes, but this would allow one to hand-edit her database, and even potentially let the server git push live changes... kinda interesting concept.
Re: Json-Base – Database built as JSON files
#7Sounds like how MongoDB was born. I believe that has made a lot of people very angry and been widely regarded as a bad move.
Re: Json-Base – Database built as JSON files
#8This brings me back sweet memories of saving my Pygame minigames state to clunky JSON files when I was basically clueless about databases. It worked surprisingly well until it became a huge spaghetti mess :-)
Re: Json-Base – Database built as JSON files
#9I could see some niche uses for this. Anywhere you want a quick and dirty local db for demos and hacking. That said, I think you'll get more mileage out of SQLite. It is generally my go to for these use cases and far richer and more powerful.
Re: Json-Base – Database built as JSON files
#10It's all fun and games until this ends up in somebody's production environment.