Browser-based application or stand-alone GUI app? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T16:00:11Z http://stackoverflow.com/feeds/question/255476 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/255476/browser-based-application-or-stand-alone-gui-app 11 Browser-based application or stand-alone GUI app? crystalattice 2008-11-01T03:25:09Z 2009-02-22T07:41:51Z <p>I'm sure this has been asked before, but I can't find it. </p> <p>What are the benefits/limitations of using a browser-based interface for a stand-alone application vs. using a normal GUI framework?</p> <p>I'm working on a Python program currently implement with wxPython for the GUI. The application is simply user-entry forms and dialogs. I am considering moving to PyQt because of the widgets it has (for future expansion), then I realized I could probably just use a browser to do much of the same stuff.</p> <p>The application currently doesn't require Internet access, though it's a possibility in the future. I was thinking of using <a href="http://karrigell.sourceforge.net/" rel="nofollow">Karrigell</a> for the web framework if I go browser-based.</p> <p><hr /></p> <p><strong>Edit</strong> For clarification, as of right now the application would be browser-based, not web-based. All the information would be stored locally on the client computer; no server calls would need to be made and no Internet access required (it may come later though). It would simply be a browser GUI instead of a wxPython/PyQt GUI. Hope that makes sense.</p> http://stackoverflow.com/questions/255476/browser-based-application-or-stand-alone-gui-app/255481#255481 6 Answer by Stewart Johnson for Browser-based application or stand-alone GUI app? Stewart Johnson 2008-11-01T03:29:53Z 2008-11-01T03:42:04Z <p>The obvious advantages to browser-based:</p> <ul> <li>you can present the same UI regardless of platform</li> <li>you can upgrade the application easily, and all users have the same version of the app running</li> <li>you know the environment that your application will be running in (the server hardware/OS) which makes for easier testing and support compared to the multitude of operating system/hardware configurations that a GUI app will be installed on.</li> </ul> <p>And for GUI based:</p> <ul> <li>some applications (e.g.: image editing) arguably work better in a native GUI application</li> <li>doesn't require network access</li> </ul> <p>Also see my comments on <a href="http://stackoverflow.com/questions/115501/is-ruby-any-good-for-gui-development#115638">this question</a>:</p> <blockquote> <p>Cross-platform GUIs are an age-old problem. Qt, GTK, wxWindows, Java AWT, Java Swing, XUL -- they all suffer from the same problem: the resulting GUI doesn't look native on every platform. Worse still, every platform has a slightly different look and <strong>feel</strong>, so even if you were somehow able to get a toolkit that looked native on every platform, you'd have to somehow code your app to feel native on each platform.</p> <p>It comes down to a decision: do you want to minimise development effort and have a GUI that doesn't look and feel quite right on each platform, or do you want to maximise the user experience? If you choose the second option, you'll need to develop a common backend and a custom UI for each platform. <em>[edit: or use a web application.]</em></p> </blockquote> <p>Another thought I just had: you also need to consider the kind of data that your application manipulates and where it is stored, and how the users will feel about that. People are obviously okay having their facebook profile data stored on a webserver, but they might feel differently if you're writing a finance application like MYOB and you want to store all their personal financial details on your server. You might be able to get that to work, but it would require a lot of effort to implement the required security and to assure the userbase that their data is safe. In that situation you might decide that the overall effort is lower if you go with a native GUI app.</p> http://stackoverflow.com/questions/255476/browser-based-application-or-stand-alone-gui-app/255484#255484 0 Answer by codemeit for Browser-based application or stand-alone GUI app? codemeit 2008-11-01T03:30:08Z 2008-11-01T03:30:08Z <p>Browsers can be accessed anywhere with internet and you deploy it on the server. The desktop app has to be deployed to their computers and each computer somehow has its own uniqueness even with same OS and same version. This could bring you lots of hassles. Go for web.</p> http://stackoverflow.com/questions/255476/browser-based-application-or-stand-alone-gui-app/255491#255491 2 Answer by coobird for Browser-based application or stand-alone GUI app? coobird 2008-11-01T03:37:23Z 2008-11-01T03:42:45Z <p>When it comes to simple data entry using user-entry forms, I'd argue that using a browser-based solution would probably be easier and faster to develop.</p> <p>Unless your core feature is the interface itself ("<em>If it's a core business function -- do it yourself, no matter what.</em>" , see <a href="http://www.joelonsoftware.com/articles/fog0000000007.html" rel="nofollow">In Defense of Not-Invented-Here Syndrome</a> from <a href="http://www.joelonsoftware.com/" rel="nofollow">Joel on Software</a>), I feel that the browser will be able to perform the form rendering and handling better than having to develop a GUI from scratch. Also, not to mention the it would take a much longer time to code a GUI as opposed to generating HTML forms and processing them after they are POSTed by the browser.</p> <p>What I found in the past was that I was asked by a friend to write an application to enter results from a survey. At first, I was writing a Java applet to display the survey itself with all the radio boxes, when it hit me that I would be better off writing a simple HTTP server which would generate the forms and process them.</p> <p>What it really comes down is to whether you are either developing:</p> <ol> <li>the user interface</li> <li>data-entry application</li> </ol> <p>If you are making a data-entry application, then leave the user interface to the browser, and focus on your core functionality.</p> http://stackoverflow.com/questions/255476/browser-based-application-or-stand-alone-gui-app/255501#255501 3 Answer by Robert Gamble for Browser-based application or stand-alone GUI app? Robert Gamble 2008-11-01T03:49:50Z 2008-11-01T04:26:18Z <p>Benefits of browser-based interface:</p> <ul> <li>Easier to manage: no installation required on user machines, upgrades need only be performed on server side and are immediately available to all users. Data backup can be performed on a single machine as data won't be spread out across multiple clients.</li> <li>Application can be accessed from any machine with a browser.</li> <li>Can easily support multiple platforms consistently.</li> <li>Memory and CPU requirements may be considerably less on the client side as intensive operations can be performed on the server.</li> <li>Increased security: data is stored on a single server instead of multiple client machines and access can be better controlled.</li> <li>Many other benefits of a centralized environment including logging, data entered from multiple sources can immediately be available from other clients, etc.</li> <li>In my experience, it is often easier to debug and faster to develop web-based solutions.</li> </ul> <p>Benefits of GUI-based interface:</p> <ul> <li>May be easier to design a more responsive, fluid interface.</li> <li>Can take advantage of OS-specific functionality that may not be available via a browser.</li> <li>Doesn't necessarily require network access.</li> <li>Don't need to worry about browser compatibility issues.</li> <li>No single point of failure if server goes down or becomes unavailable.</li> </ul> http://stackoverflow.com/questions/255476/browser-based-application-or-stand-alone-gui-app/255505#255505 2 Answer by le dorfier for Browser-based application or stand-alone GUI app? le dorfier 2008-11-01T03:51:15Z 2008-11-01T03:57:02Z <p>There's pretty good evidence that the trump-card issue in most cases is deployability and supportability. Browser apps are lower overhead in general; implementing and supporting more than a couple dozen users can end up consuming substantial support resources.</p> <p>I saw a table a year or two ago that showed something like:</p> <p> <br><br /> <br>UI quality - Desktop <br>Granularity of validation - Desktop <br>Responsiveness - Desktop <br>User acceptance - Desktop <br> etc. - Desktop <br> etc. - Desktop <br>Install &amp; Support - Browser <br>and the Browser wins.</p> http://stackoverflow.com/questions/255476/browser-based-application-or-stand-alone-gui-app/255508#255508 6 Answer by Ken Gentle for Browser-based application or stand-alone GUI app? Ken Gentle 2008-11-01T03:53:47Z 2008-11-01T03:53:47Z <p>Let's pretend for a moment that the development/deployment/maintenance effort/cost is equal and we look at it from the application user's perspective:</p> <p><em>Which UI is the user going to find more useful?</em></p> <p>in terms of</p> <ul> <li>Ease of use</li> <li>Responsiveness</li> <li>Familiar navigation/usage patterns</li> <li>Most like other tools/applications in use on the platform (ie, native)</li> </ul> <p>I understand that "useful" is subjective. I personally would never use (as a user, not developer) a web interface again if I could get away with it. I <strong><em>hate</em></strong> them.</p> <p>There are some applications that just don't make sense to develop as browser based apps.</p> <p>From a development perspective</p> <ul> <li>No two browsers available today render <em>exactly</em> the same.</li> <li>Even with Ajax, javascript and dynamic, responsive interfaces are non-trivial to implement/debug.</li> </ul> <p>There are many, many standalone GUI applications that are just terrible, no argument. Development/deployment and maintenance for a multi-platform GUI is non-trivial.</p> <p>Developing good user-interfaces is hard, period.</p> <p>The reality is that I've made my living over the last 10 years developing mostly web based applications, because they're faster to develop, easier to deploy and provide enough utility that people will use them if they have to.</p> <p>I don't believe that most users would use a web interface if given an alternative.</p> <p>IMNSHO</p> http://stackoverflow.com/questions/255476/browser-based-application-or-stand-alone-gui-app/255514#255514 2 Answer by dbr for Browser-based application or stand-alone GUI app? dbr 2008-11-01T04:05:43Z 2008-11-01T04:05:43Z <p>For this task (form-based text entry) a browser is great. You don't need anything that being a desktop app will give you (speed, flexibility)</p> <p>There are draw-backs to being a web-application, such as..</p> <p><strong>It's a web-page. There are things you just cannot (easily) do</strong></p> <p>You cannot easily map the ctrl+j key to do something. For example: Google Spreadsheet tries to map keyboard shortcuts and works <em>most</em> of the time, sometimes the browsers default handling of the shortcut takes over..</p> <p>You cannot make Growl alerts (An OS X notification framework). You cannot access the filesystem. It's difficult to allow access while offline.</p> <p><strong>Javascript is very CPU-heavy.</strong></p> <p>Try resizing a Google Spreadsheet document, or load a page on Digg (a very javascript heavy site) - the browsers CPU usage will be at 100% for a while.. Doing the same in a native desktop application is trivial</p> <p><strong>When you perform upgrades, you <em>force</em> them on all your users.</strong> With a desktop application, they have the choice of not upgrading. For example, I didn't like one of the Google Reader upgrades, but I was stuck. Using NetNewsWire (a desktop application), if I don't like a change in the newest version, I can quite easily keep using this one (or try it, and downgrade)</p> <p><strong>You web-server <em>must</em> be accessible at all times, for ever</strong></p> <p>If the server disappears, your users have no recourse. The application is gone. If it's down for 10 minutes, they cannot use it.</p> <p><hr /></p> <p>With your application, while I'm not too sure what it is, none of the above seems like its going to be an issue.</p> <p><em>"It's a web -page"</em>: Forms and dialogue boxes are easy to do in HTML and javascript (or even using server-side scripting, for example <code>&lt;?php if($_POST["email"] ==""){echo("Are you sure you want to continue?); ?&gt;</code>)</p> <p><em>"Javascript is very CPU-heavy"</em>: Doesn't sound like your application will require any Javascript (maybe some client-side input-validation when the user clicks "Submit", to warn them about any input errors?)</p> <p><em>"Forced upgrades"</em>: I imagine this may be desirable, as you wouldn't want users inputing data in the old way.</p> <p><em>"Server must be accessible"</em>: Could be an issue, but I don't think it'll be a large one.. Say you want to store all the users data in a central database, this issue becomes inescapable anyway - keeping a web and database server running isn't much more work than only a database (for the GUIs to connect to)</p> <p>Also, you get the benefits others have posted - you develop it once, and it runs identically on every operating system that can run a sane browser.</p> http://stackoverflow.com/questions/255476/browser-based-application-or-stand-alone-gui-app/256770#256770 0 Answer by Ali A for Browser-based application or stand-alone GUI app? Ali A 2008-11-02T11:07:25Z 2008-11-02T11:07:25Z <p>Everything has advantages and disavantages, but:</p> <p><em>I have yet to use a single browser-based application on localhost, intranet, or internet that feels nice to use, is responsive, and who's user interface isn't strictly limited by the limitations of HTML/JS/CSS.</em></p> <p>Note: Flash/Java-based UI is an exception (but that's even worse in some regards and I don't think it's really what you are talking about here).</p> http://stackoverflow.com/questions/255476/browser-based-application-or-stand-alone-gui-app/266145#266145 0 Answer by Bryan Oakley for Browser-based application or stand-alone GUI app? Bryan Oakley 2008-11-05T18:29:28Z 2008-11-05T18:29:28Z <p>One of the things I hate about web based UIs is the fact that they run inside another window. Meaning, you have controls -- maybe dozens of them -- that have nothing to do with your application. From a usability point of view this can be confusing though most of us have adapted by "tuning out" the extra stuff. </p> <p>As I look at my browser window as I type this, the window is perhaps 12 inches tall, but the window in which I type is only maybe 3 inches. And out of that 12 inches overall, perhaps two full inches are taken up with browser toolbars, tabs, rows of bookmarks and the statusbar, none of which have anything to do with the web app I'm interacting with. There's a lot of wasted space (the edit window isn't as wide as the window as a whole, for example), space filled with stuff I don't need, etc. Some of the most fundamental controls (back button, I'm looking at you) can completely break poorly designed web applications.</p> <p>Not to mention the fact that if I type a sufficiently long response I now end up with two sets of scrollbars. stackoverflow.com partially addresses that by giving me a resizable text area but I still have to interact with the inner scrollbar to scroll the text I'm editing, then scroll the whole window up or down to access the app controls at the top or bottom of the editing window.</p> <p>All in all, a web based application just can't compare to the usability of a desktop application. For me, then, the question simply becomes "are you more interested in usability, or in making your (as the developer) life easier".</p> <p>If you want usability, go with a desktop application, hands down. If you're concerned with deployment and support a web app is something to consider, but there are still many easy ways to deploy desktop apps, including creating apps that can update themselves over the net at runtime.</p> http://stackoverflow.com/questions/255476/browser-based-application-or-stand-alone-gui-app/574535#574535 0 Answer by Vishal Sapre for Browser-based application or stand-alone GUI app? Vishal Sapre 2009-02-22T07:41:51Z 2009-02-22T07:41:51Z <p>I think the browser based UI concept is here to stay. There is nothing more portalble than the web itself, and as long as one stays within the boundaries of decent javascript libraries...the rendering would be almost the same. Plus since the rendering is not your headache, you can concern yourself more with developing the business logic itself.</p> <p>I am all for it...</p>