up vote 3 down vote favorite
1
share [g+] share [fb]

I'm currently in the need of developing a Windows application. I want to keep things simple (in the spirit of uTorrent) and I would like the result program to be a single .exe file containing all that it needs.

The program is simple. It just needs some UI. It needs to run for a long period of time (lay there as a tray icon). It needs to do some routine tasks like simple I/O. It also needs to access the internet, specifically some web server.

Apart from these small requirements I would like to write all of it in JavaScript, as I feel more comfortable with it than any other language.

I know there's things like Windows Script Host that let you run JavaScript programs and interact with some Win32 API, but will I be able to do everything I need with Windows Script Host? Can I pack all of the Windows Script Host in a single .exe?

If not, what alternatives do I have for JavaScript?

link|improve this question

Are you aware of HTAs? That would be a way of making the GUI part entirely in HTML/CSS/JS, at least. – Andreas Rejbrand Aug 31 '10 at 14:25
@Andreas: Yeah, I think it works similarly to Windows Script Host (probably uses cscript.exe etc). So I'm still not sure if it's enough to do what I need. – Luca Matteis Aug 31 '10 at 14:30
4  
JavaScript is NOT a browser engine, it's a scripting language. There might be implementations of it which are bound to a particular browser, but at least V8 is a "vanilla" engine without any particular bindings. Take a look at Node.js for one example of non browser usage. – Ivo Wetzel Aug 31 '10 at 16:24
2  
@tommieb75: I don't care which language I will be using. I would rather do it in JavaScript since that's the language I know best. That's all. I'm not afraid to learn C, I actually know C pretty well and many other languages. The reason I won't do it in C is because I know JavaScript better. As far as my accept rate, I know it's low... I guess most of my questions have not been answered as well as I hoped. And JavaScript is not a browser engine, it's just a programming language like all the rest you mentioned. – Luca Matteis Sep 1 '10 at 9:53
2  
@tommieb75: I've actually used JavaScript for writing portions of Windows desktop apps. I've also used C++, C#, and a handful of other languages for this purpose. There are pros and cons to each, but being limited to in-browser apps is definitely not one that applies to JS. You accuse Luca of being shallow and fixated, but this seems to be an affliction you yourself suffer from - you seem unable to believe that others have had any success using tools you yourself were unwilling or unable to use effectively. – Shog9 Sep 1 '10 at 23:42
show 4 more comments
feedback

10 Answers

I think you're looking for Adobe AIR

The Adobe® AIR® 2 runtime enables developers to use HTML, JavaScript, Adobe Flash® software, and ActionScript® to build web applications that run as standalone client applications without the constraints of a browser. ~ The AIR website

link|improve this answer
2  
i still need the runtime... that's an extra overhead i would like to avoid – Luca Matteis Aug 31 '10 at 14:46
1  
Then go ahead and write your own C++ app which embeds V8 and write all the C++ binding code for it yourself. Or wait until someone else does it. Or, just learn C++ or anything else which works nicely on Windows. You won't improve your skills in other languages by always relying on a JavaScript solution. – Ivo Wetzel Aug 31 '10 at 16:35
There's also Rhino, but it requires Java, which is quite bloated: developer.mozilla.org/en/Rhino_documentation – Ryan Kinal Aug 31 '10 at 16:49
I like this, runtime or not. I didn't know AIR does this. – Pekka Aug 31 '10 at 18:24
feedback

Internet Explorer introduced the concept of Hypertext Applications in IE 5. It never made a big breakthrough, so resources and documentation are scarce.

Mozilla-backed competitor Prism seems to be alive and well, though, and is definitely worth a look.

Prism is an application that lets users split web applications out of their browser and run them directly on their desktop

link|improve this answer
1  
+1, I like the look of Prism. Kind of like how HTAs should have been done :-) – Andy E Aug 31 '10 at 14:38
1  
@Andy yup. HTAs were a great concept, I loved it when they introduced it back in the day, but they never really got it to take off. Maybe Prism gets it done better! – Pekka Aug 31 '10 at 14:41
feedback

Aside from Windows Script Host, there are

Both are written with standard web technologies, HTML, JavaScript, Flash, etc. They can also be extended with COM objects/ActiveX controls such as FileSystemObject, WMI, WScript or even ones that you write yourself. Windows Desktop Gadgets have access to a separate API/namespace with various Win32-esque properties and methods.

link|improve this answer
Ok. I'm not that comfortable with the entire COM object API, but can I do I/O and HTTP requests with it? The internet seems to lack major documentation on these. What about UI and Windows Script Host... couldn't find much of that either. – Luca Matteis Aug 31 '10 at 14:33
@Luca: You can create cross domain web requests using XMLHttpRequest in HTAs and Windows Desktop Gadgets. However, I/O will require a higher level interface such as a COM component. You can use WinHTTPRequests from WSH, but they have to be synchronous in most cases. – Andy E Aug 31 '10 at 14:35
1  
Why the downvote? This is fine input. – Pekka Aug 31 '10 at 14:35
@Pekka: Dunno, it wasn't me :) – Luca Matteis Aug 31 '10 at 14:37
1  
@Andy E: Actually I do find it very useful thanks. Most of the recent answers have nothing to do with my question, and the most up-voted is about AIR which also seems unrelated due to me wanting a simple .exe and not an entire runtime as a dependency. – Luca Matteis Aug 31 '10 at 20:52
show 4 more comments
feedback
up vote 1 down vote accepted

I found that there's actually a JavaScript compiler that comes with the .NET framework called jsc.exe.

For more information:

http://www.phpied.com/make-your-javascript-a-windows-exe/

http://msdn.microsoft.com/en-us/library/7435xtz6(VS.80).aspx

I guess it's not really JavaScript since it introduces extra things like import and even some class syntax which is weird for me. But this works perfectly for me as I will just doing things as I am used to on the web.

link|improve this answer
feedback

I'm not 100% but I believe WSH uses JScript or WScript, not JavaScript.

link|improve this answer
3  
JScript is a Microsoft's flavour of JavaScript/ECMAScript. Most people actually just refer to JScript as JavaScript. – Andy E Aug 31 '10 at 14:26
JScript and JavaScript are the same thing - they're both ECMAScript. But Microsoft didn't want to interfere with Sun's trademark on "Java" so they called their ECMAScript implementation "JScript." But it's the same language. – EAMann Aug 31 '10 at 14:27
I think the languages are pretty much identical at this level (without the DOM etc.). What are the differences? – Luca Matteis Aug 31 '10 at 14:28
@Lucas lack of litigation. Same reason J# isn't called Java#. – David Lively Aug 31 '10 at 14:32
1  
While it does follow ECMAScript, because it's Microsoft it also introduces other things that don't follow the standard: msdn.microsoft.com/en-us/library/4tc5a343(v=VS.85).aspx – Angelo R. Aug 31 '10 at 14:37
show 1 more comment
feedback

I believe the best way to go is V8 JavaScript Engine provided by Google.

"V8 can run standalone, or can be embedded into any C++ application." - which I believe is perfect for your needs, because you can do most of the stuff in JavaScript and use provided interfaces to communicate with the system.

link|improve this answer
He will still have to write some amount of C++ code, which I think is the part he's afraid of, at least all of his GUI will need some interface to a native toolkit. So in the end he will have to write large amounts of binding code. Overall he will end up writing a hell lot more code just for the sake of being able to use JS. – Ivo Wetzel Aug 31 '10 at 16:29
feedback

Color me crazy, but its only a short step form Javascript to Java or C#. I'd suggest C# as, on a windows machine, the libraries are already there. You can just copypaste your .exe and let 'er rip.

link|improve this answer
Good point. This would definitely make things easy... There are not many ways of doing this with a single .EXE with not too much overhead if you want to stay with Javascript. – Pekka Aug 31 '10 at 18:34
1  
idiomatic javascript and idiomatic c# are almost complete opposites. – Matt Briggs Sep 1 '10 at 12:33
Are you suggesting that he run JavaScript from within a C# executable? (e.g., using WSH through interop and loading the scripts from resources...) Because, that actually does work pretty well. But if you're suggesting that C# is anything like JavaScript... – Shog9 Sep 1 '10 at 16:14
#Matt syntactically they are very similar. The only true differences that a normal programmer would notice is the difference between the DOM and the framework. Advanced javascript programmers would have issues with type definitions, but I think C# is clearer rather than the way it is in Javascript (i.e., obscure). – Will Sep 1 '10 at 23:07
@SHog9 no, I wasn't suggesting that. You have to admit that Javascript syntax is very close to javascript. The major difference is the context (DOM vs. framework). – Will Sep 1 '10 at 23:09
show 1 more comment
feedback

If you want a single .EXE, what runtimes are you okay if they are required pre-requisites?

If you're okay with requiring .NET runtime to be preinstalled, then you do all your work in JScript.NET

link|improve this answer
feedback

Why not use Rhino -- JavaScript on the JVM? You can even compile your scripts to .class files and package them into a JAR along with Rhino for easy distribution...

link|improve this answer
feedback

Or you can install a Apache (or any other http server) on your Windows and run a webpage directly using this and you web browser ?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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