I'm looking to develop an application made up only of .HTML, .JS and .CSS files (maybe some media files also) which can be copied from one machine to another and run from the local file system via a browser.
All of that is fine.
I'm also looking for a database that can be accessed from Javascript and IMPORTANTLY can be copied from one machine to another along with the .HTML, .JS and .CSS files so that 2 users can have independent copies of the same solution. Synchronisation not needed.
Does anybody have experience of this kind of set up and advice on which direction to go?
A key requirement is that the database does not need installation permissions on the target machine. Almost as if it were simply a local text file that Javascript could manipulate directly.
My understanding is that Local Storage and/or IndexedDb are 'embedded' in the local browser so I could not copy that data to a new machine with the .HTML, .JS and .CSS files.