What do you prefer and why?
A couple of months ago, I created a desktop application for merging multiple .pdf files into one file. The application can also be used for extraction of certain pages from one file.
The initial project was supposed to be for personal use only, but I had decided to make it more user friendly and put it out for everyone interested to use. The user interface is very intuitive and easy to use.
Now I am a bit stuck on the distribution end.. I would like to reach as much people I can, so they can use my application. Is creating a web application out of it a better apprach?
Here is a download link to the desktop version: https://lnkd.in/dwjc-XC
Top comments (2)
I'd say yes, but only if you can ensure it will work offline and can work around the general lack of filesystem access.
One of the big things about doing a PWA instead of a desktop app (aside from the triviality of distribution) is that the platform differences you have to deal with become much much less significant most of the time, which makes it easier to support a wide variety of systems (at least, provided you don't worry about Internet Explorer and Opera Mini).
There are a couple of downsides though:
Excellent insight!
Thank you very much.