Best tool for the job: cross-platform, open source, on- and off-line tool development. - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T11:33:19Z http://stackoverflow.com/feeds/question/67185 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/67185/best-tool-for-the-job-cross-platform-open-source-on-and-off-line-tool-develop 0 Best tool for the job: cross-platform, open source, on- and off-line tool development. drfloob 2008-09-15T21:30:01Z 2008-09-17T13:46:14Z <p>The goal is to build tools and applications that have both web-based and standalone versions for multiple OS's (*nix, Mac, Win, etc.).</p> <p>I've got a general idea of how to architect software that is flexible enough to accomplish this, but ...</p> <p>Is there a language or framework that's designed for or uniquely suited to this task?</p> <p><em>EDIT:</em></p> <p>Thanks all for your answers, but I wasn't specific enough in my question.</p> <p>To make things a bit more complicated (and more useful for my purposes),</p> <ul> <li>The OS-specific distributions need to have minimal dependencies, and</li> <li>the standalone versions are truly "offline".</li> </ul> <p>"This application requires X library to run" is unacceptable, because non-technical people need to be able to download and run without much trouble. Java is out, unless a full JVM with libraries can be <em>packaged-in</em> and distributed for a few extra megabytes for most platforms (is that possible?).</p> <p>I do not know how robust Python's py2exe and py2app are, but I was headed in that general direction.</p> http://stackoverflow.com/questions/67185/best-tool-for-the-job-cross-platform-open-source-on-and-off-line-tool-develop/67232#67232 1 Answer by Tom Ritter for Best tool for the job: cross-platform, open source, on- and off-line tool development. Tom Ritter 2008-09-15T21:34:51Z 2008-09-15T21:34:51Z <p>As far as a language, Java sounds well-suited to fulfill the standalone and web-based requirement. A framework within Java would depend on what the tools would do.</p> http://stackoverflow.com/questions/67185/best-tool-for-the-job-cross-platform-open-source-on-and-off-line-tool-develop/67238#67238 0 Answer by Chochos for Best tool for the job: cross-platform, open source, on- and off-line tool development. Chochos 2008-09-15T21:35:47Z 2008-09-15T21:35:47Z <p>Java or Python should be good options.</p> http://stackoverflow.com/questions/67185/best-tool-for-the-job-cross-platform-open-source-on-and-off-line-tool-develop/67254#67254 0 Answer by davenpcj for Best tool for the job: cross-platform, open source, on- and off-line tool development. davenpcj 2008-09-15T21:37:34Z 2008-09-15T21:37:34Z <p>You need a middleware software platform.</p> <p>Java is designed for exactly that. So is flash, javascript, and most other web-browser based technologies. The browser is the platform in that instance. Google Gears is an example of using offline/online abstraction for browser based software.</p> <p>Mozilla platform / xul runner allow you to write more fully featured applications that function in multiple host environments.</p> http://stackoverflow.com/questions/67185/best-tool-for-the-job-cross-platform-open-source-on-and-off-line-tool-develop/67258#67258 0 Answer by Hugh Buchanan for Best tool for the job: cross-platform, open source, on- and off-line tool development. Hugh Buchanan 2008-09-15T21:38:33Z 2008-09-15T21:38:33Z <p>I develop web applications on and offline in Java. Using Sun's <a href="http://www.netbeans.org" rel="nofollow">NetBeans</a> IDE, Glassfish application server, and Derby database server, I can work on my laptop anywhere any time.</p> <p>The final deployment for my application is not in the same set of technologies. I stick to the Java EE 5 spec and the application should deploy on a variety of application servers and database servers (Oracle and MS SQL being the two big targets)</p> http://stackoverflow.com/questions/67185/best-tool-for-the-job-cross-platform-open-source-on-and-off-line-tool-develop/67260#67260 0 Answer by mmattax for Best tool for the job: cross-platform, open source, on- and off-line tool development. mmattax 2008-09-15T21:38:48Z 2008-09-15T21:38:48Z <p>Java truly wins in the realm of platform agnostic software; It's mature, has great libraries, and can run on pretty much any platform.</p> <p>Java sound like it would fit the bill, having both a powerful web framework, and has many great frameworks for standalone applications (Swing, SWT, Eclipse RCP).</p> <p>I would recommend taking a look into SWT for the desktop portion.</p> <p>Also, you may want to look into a Flex / Air combination...I have yet to work in Air, but flex has some really great tools...</p> http://stackoverflow.com/questions/67185/best-tool-for-the-job-cross-platform-open-source-on-and-off-line-tool-develop/67350#67350 0 Answer by Toni Ruža for Best tool for the job: cross-platform, open source, on- and off-line tool development. Toni Ruža 2008-09-15T21:49:49Z 2008-09-15T21:49:49Z <p>You could among other things:</p> <ul> <li><p>make cross-platform programs using java that can function both as standalone applications and as java applets.</p></li> <li><p>make all your application logic as web services and then use those services to power gui clients and web sites using whatever technology is suitable/available for these different parts.</p></li> </ul> http://stackoverflow.com/questions/67185/best-tool-for-the-job-cross-platform-open-source-on-and-off-line-tool-develop/83161#83161 0 Answer by Simon Collins for Best tool for the job: cross-platform, open source, on- and off-line tool development. Simon Collins 2008-09-17T13:27:08Z 2008-09-17T13:27:08Z <p>You might want to check out <a href="http://www.haxe.org" rel="nofollow">Haxe</a>. It's a modern object oriented language which has similar syntax to ActionScript, Java et al but with more consistency and some more powerful language constructs.</p> <p>The compiler has backends that compile Haxe to JavaScript, PHP or Neko (Neko is a low level language for the <a href="http://www.nekovm.org" rel="nofollow">NekoVM</a> - a modern portable virtual machine). So you could share code between your client side webapp (compiled to JavaScript), you webapp backend (compiled to PHP or to Neko) and make a standalone desktop app by compiling to an executable.</p> <p>The language and associated runtime libraries were specifically designed with this usecase in mind. You can compile Haxe code to an executable with minimal dependencies.</p> http://stackoverflow.com/questions/67185/best-tool-for-the-job-cross-platform-open-source-on-and-off-line-tool-develop/83249#83249 0 Answer by Tim Howland for Best tool for the job: cross-platform, open source, on- and off-line tool development. Tim Howland 2008-09-17T13:34:13Z 2008-09-17T13:34:13Z <p>Java is GPL now, so there should be an appropriate embeddable version for almost any platform.</p> http://stackoverflow.com/questions/67185/best-tool-for-the-job-cross-platform-open-source-on-and-off-line-tool-develop/83386#83386 4 Answer by Bryan Oakley for Best tool for the job: cross-platform, open source, on- and off-line tool development. Bryan Oakley 2008-09-17T13:46:14Z 2008-09-17T13:46:14Z <p>You might want to check out Tcl/Tk. It has a deployment mechanism second to none. Using built-in virtual filesystem capabilities you can either a) create a single file platform-specific executable that contains the application, any support files (images, dynamic libraries, etc) and runtime environment), or b) create a single file platform-specific runtime and a platform-neutral application file. </p> <p>A complete application, runtime, images and application files wrapped into a single executable can easily be less than 3 megabytes. For novice users, installation is nothing more than "copy this file wherever you want", and uninstallation means "just delete that one file".</p> <p>Tcl is truly a modern, actively maintained, dynamic language with a robust GUI language used by many other dynamic languages, with native widget support in Windows and the Mac. It has full, virtually transparent unicode support (for far longer than most (all?) other dynamic languages), integrates very nicely with sqlite for client-side, portable data storage and so on. And because it is available under a BSD license it's truly free.</p> <p>The words to google for more information are tclkit (platform specific single-file runtime), starkit (portable virtual file system in a single file), and starpack (combination of the two into a single file). ActiveState does a nice job packaging up a standard distribution of Tcl and many extensions if you're not into building your own from source.</p>