up vote 27 down vote favorite
10
share [g+] share [fb]

I know there's JScript.NET, but it isn't the same as the JavaScript we know from the web.

Does anyone know if there are any JavaScript based platforms/compilers for desktop development? Most specifically Windows desktop development.

link|improve this question

feedback

14 Answers

up vote 19 down vote accepted

Yes, with Adobe AIR. Adobe AIR lets you make desktop applications with Javascript, Flex, or Flash.

link|improve this answer
feedback

There is XULRunner, 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 Prism which let's you build web apps that work offline, sort of like AIR. Yahoo uses it for their Zimbra email desktop client.

link|improve this answer
Instead of Prism you could use Google Chrome and then you could use the built in Google Gears support for offline storage. – Sam Hasler Sep 20 '08 at 22:32
I was so excited to find XULRunner a couple of years ago, but then found out that it doesn't support any of the abilities firefox has for DOM manipulation and other stuff I'd expected to get (I don't remember what else it didn't have, maybe AJAX?) – Madd0g Dec 13 '11 at 18:09
feedback

There's SpiderMonkey, a JavaScript engine written in C and Rhino, an implementation of JavaScript in Java.

link|improve this answer
feedback

There's Titanium Developer which is similar to Adobe AIR (html+css+javascript), but does not require a framework to be pre-installed.

link|improve this answer
feedback

Google Gears. There's also Mozilla's XUL, but it's too bit complicated, IMHO (albeit extremely powerful).

link|improve this answer
feedback

You can make a desktop application using XML and javascript (and/or VBS) using the Windows Script host.

The trick is to save your XML file with a .hta extension. See this reference.

link|improve this answer
I forgot about this, I'll have to try it out a little bit more. Thanks! – Chris Pietschmann Sep 22 '08 at 20:37
It would be nice if it could be compiled too. – Chris Pietschmann Sep 22 '08 at 20:38
true... maybe under .NET? I haven't tried it tho as I stopped using windows way back, but it may be worth looking up – dsm Sep 22 '08 at 20:41
can't find anything like it in MSDN. Then again, I probably didn't look hard enough – dsm Sep 22 '08 at 20:48
feedback

There's Yahoo's Konfabulator for the windows desktop.

link|improve this answer
feedback

Another option I didn't see mentioned is for Cocoa (Mac OS X, iPhone OS) applications you can use a web view (embedded WebKit) as the application UI.

link|improve this answer
feedback

Script# has extensions for Vista Gadgets.

http://projects.nikhilk.net/ScriptSharp/

link|improve this answer
Script#....eewwww. :) – Jason Bunting Sep 26 '08 at 15:37
feedback

http://cappuccino.org/

link|improve this answer
feedback

You can try JavaLikeScript, it does not provide the same native/root objects that a web browser but it has network and user interface features.

link|improve this answer
feedback

Here are some JSOS (Javascript Operating Systems), sort-of still need a browser.

http://fractalbrain.net/ /* The Best. */

http://cometdesktop.com/ /* Alright. */

http://skylightproject.com/ /* Worst */

link|improve this answer
feedback

Windows 8 will allow "Metro" Apps to be written in HTML5/JavaScript.

Future support for writing "native" apps in JavaScript on Windows is coming in the next release.

link|improve this answer
+1: windows 8 is pretty cool! – naveen Jan 22 at 7:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.