I'm making a local web app to be used offline and need a way of 'saving' data locally and also being able to read it. I know javascript doesn't really allow for this except in a sandboxed way. What would be the best way to go about this.
Can I set up a local sever database to store and load the data?
The solution ideally needs to be cross browser compatible, so 'local storage' wouldn't be an option.
thanks