Can you do Desktop Development using JavaScript? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T02:43:01Zhttp://stackoverflow.com/feeds/question/109399http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/109399/can-you-do-desktop-development-using-javascript12Can you do Desktop Development using JavaScript?Chris Pietschmann2008-09-20T21:08:18Z2009-10-18T05:56:06Z
<p>I know there's JScript.NET, but it isn't the same as the JavaScript we know from the web.</p>
<p>Does anyone know if there are any JavaScript based platforms/compilers for desktop development? Most specifically Windows desktop development.</p>
http://stackoverflow.com/questions/109399/can-you-do-desktop-development-using-javascript/109405#1094057Answer by Justin Poliey for Can you do Desktop Development using JavaScript?Justin Poliey2008-09-20T21:09:54Z2008-09-20T21:09:54Z<p>Yes, with <a href="http://www.adobe.com/products/air/" rel="nofollow">Adobe AIR</a>. Adobe AIR lets you make desktop applications with Javascript, Flex, or Flash.</p>
http://stackoverflow.com/questions/109399/can-you-do-desktop-development-using-javascript/109412#1094120Answer by Kris for Can you do Desktop Development using JavaScript?Kris2008-09-20T21:11:47Z2008-09-20T21:11:47Z<p>There's <a href="http://widgets.yahoo.com/tools/" rel="nofollow">Yahoo's Konfabulator</a> for the windows desktop.</p>
http://stackoverflow.com/questions/109399/can-you-do-desktop-development-using-javascript/109441#1094418Answer by Zach for Can you do Desktop Development using JavaScript?Zach2008-09-20T21:17:40Z2008-09-20T21:17:40Z<p>There is <a href="http://developer.mozilla.org/en/XULRunner" rel="nofollow">XULRunner</a>, which let's you build GUI apps like Firefox using JavaScript and XUL. It has a lot of extension to JavaScript though, using XPCOM. They also offer <a href="http://developer.mozilla.org/en/Prism" rel="nofollow">Prism</a> which let's you build web apps that work offline, sort of like AIR. Yahoo uses it for their <a href="http://www.zimbra.com/" rel="nofollow">Zimbra</a> email desktop client.</p>
http://stackoverflow.com/questions/109399/can-you-do-desktop-development-using-javascript/109475#1094752Answer by Mike Hordecki for Can you do Desktop Development using JavaScript?Mike Hordecki2008-09-20T21:26:36Z2008-09-20T21:26:36Z<p><a href="http://gears.google.com" rel="nofollow">Google Gears</a>. There's also Mozilla's <a href="http://www.mozilla.org/projects/xul/" rel="nofollow">XUL</a>, but it's too bit complicated, IMHO (albeit extremely powerful).</p>
http://stackoverflow.com/questions/109399/can-you-do-desktop-development-using-javascript/109499#1094992Answer by David G for Can you do Desktop Development using JavaScript?David G2008-09-20T21:35:19Z2008-09-20T21:35:19Z<p>There's <a href="http://www.mozilla.org/js/spidermonkey/" rel="nofollow">SpiderMonkey</a>, a JavaScript engine written in C and <a href="http://www.mozilla.org/rhino/" rel="nofollow">Rhino</a>, an implementation of JavaScript in Java.</p>
http://stackoverflow.com/questions/109399/can-you-do-desktop-development-using-javascript/109507#1095071Answer by mattlant for Can you do Desktop Development using JavaScript?mattlant2008-09-20T21:39:32Z2008-09-20T21:39:32Z<p>Script# has extensions for Vista Gadgets. </p>
<p><a href="http://projects.nikhilk.net/ScriptSharp/" rel="nofollow">http://projects.nikhilk.net/ScriptSharp/</a></p>
http://stackoverflow.com/questions/109399/can-you-do-desktop-development-using-javascript/110861#1108611Answer by dsm for Can you do Desktop Development using JavaScript?dsm2008-09-21T12:10:14Z2008-09-21T12:10:14Z<p>You can make a desktop application using XML and javascript (and/or VBS) using the Windows Script host.</p>
<p>The trick is to save your XML file with a <code>.hta</code> extension. <a href="http://msdn.microsoft.com/en-us/library/ms536496.aspx" rel="nofollow">See this reference</a>.</p>
http://stackoverflow.com/questions/109399/can-you-do-desktop-development-using-javascript/1584129#15841291Answer by Muxa for Can you do Desktop Development using JavaScript?Muxa2009-10-18T05:56:06Z2009-10-18T05:56:06Z<p>There's <a href="http://www.appcelerator.com/" rel="nofollow">Titanium Developer</a> which is similar to Adobe AIR (html+css+javascript), but does not require a framework to be pre-installed.</p>