Is there any system/compiler/SDK/IDE that provides an ability to develop desktop applications using JavaScript?
Asked
Active
Viewed 2,274 times
7
-
possible duplicate of [JavaScript desktop applications?](http://stackoverflow.com/questions/4780916/javascript-desktop-applications) – Mrchief Aug 03 '11 at 20:44
-
no, I don't want to use .NET libraries – Sergey Metlov Aug 03 '11 at 20:45
-
You need some framework after all, .Net, Adobe AIR, Mozilla XUL etc. Since you're "DotNet Ninja", I thought you're interested in .Net :) – Mrchief Aug 03 '11 at 20:48
6 Answers
4
You can use node-webkit.
It uses webkit to render the webpage and execute the Javascript, and you will have access to all the Node.js javascript API (reading/writing files, …)

Matthieu Napoli
- 48,448
- 45
- 173
- 261
1
You can use an .net application for execute javascript codes.
You can make this:
string CompilerJScript (string JSource) {
return Microsoft.JScript.Eval.JScriptEvaluate(JSource, Microsoft.JScript.Vsa.VsaEngine.CreateEngine());
}
You need to reference the Microsoft.JScript
dll assembly.
Note: don't using only keyword to reference the assembly. right click on the project in VS and choose 'Add reference'

The Mask
- 17,007
- 37
- 111
- 185
1
There is the jls JavaScript platform and eclipse WTP as IDE.
Jls supports graphical user interface, file system manipulation, unit testing, thread, process, network sockets and selectors, HTTP client and server, SQL, image manipulation, zip file...
You can found the desktop documentation here.

jls
- 11
- 1