I'm working on a little side project and wanted to keep it as simple as possible. So app will have no back end, it will just be a single html page with some local javascript included that can be passed around and run locally.
Given those requirements, I'm looking for a some sort of solution that would let me store and load data like you would a database, in a way the data can be permanently stored in a file. So preferably, being able to use a json file like a NoSQL database.
I've looked at lowdb
, alasql
, and lokijs
, but none of those seem to meet my requirements. They either need a node server to function, or only use local storage or memory to store data.