I'm just writing little stuff in Java, and use that as my x-platform environment, but even it has its challenges.
So, I was considering a PWA. I don't need tight local integration per se. I do have a conceptual problem not being able to save a file or read a file, even if it's just chosen by the user. I THINK I can do that. I THINK you can pop a file chooser to read a file, but not necessarily just open any file you want. If you can read/write a file as directed by a user, that would be fine. I can see the rest being stored in the IndexDB. And that gives the option of an export/backup if it becomes necessary for peace of mind.
Then there's the whole x-browser game, I'm not really looking at mobile, just desktop, but I'd like to support FF/Chrome/Safari/Edge.
It's not rocket science stuff by any means. But I don't want a user to call up and talking about how their data suddenly vanished because they went to get the latest, and I did something innocent/ignorant (or not), or THEY did something (deleted their PWA icon, copied it, moved it, etc.), or the browser did something.
I have no experience with it, so for now, I'm not comfortable because I don't have my "hands" on the data.
If I can export it, then the comfort level goes way up. Inform the user to back up "just in case", especially early on when we're all still bumping in the dark.
To be clear, I don't want a server side, I have no interest in standing up a service component. I have less interest in maintaining a service component. I'd like the code to be local and "standalone" as practical.
But I also want something a touch more than "git clone app; cd app; ./build".
2. Nit - on the demo page: Priavcy --> Privacy
3. Why does one of my browsers raise the error, "Your browser does not support service workers. Please use another browser."? Can this be worked around, or is the use of service workers essential to the distinguishing characteristics of the app? Genuinely curious.
I'm curious which browser are you using?
I don't know much about service workers. But, after some searching I found out they apparently aren't supported in private / incognito mode.
I do 95%+ of my browsing in incognito mode, so this makes a lot of sense.
After refreshing, it properly displayed the JS code for the SW.
Tor Browser
> Well without the service worker it wouldn't work offline any more and that's one of the key features.
Thanks, that definitely seems worthwhile then!