Desktop application on JavaScript [closed]
Asked Answered
S

6

7

Is there any system/compiler/SDK/IDE that provides an ability to develop desktop applications using JavaScript?

Sooksoon answered 3/8, 2011 at 20:42 Comment(3)
possible duplicate of JavaScript desktop applications?Phenomenalism
no, I don't want to use .NET librariesSooksoon
You need some framework after all, .Net, Adobe AIR, Mozilla XUL etc. Since you're "DotNet Ninja", I thought you're interested in .Net :)Phenomenalism
R
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, …)

Reagan answered 15/11, 2012 at 15:20 Comment(0)
G
1

Take a look at Appcelerator(http://www.appcelerator.com/).

Ghibelline answered 3/8, 2011 at 20:44 Comment(0)
K
1

You might try XUL or maybe Google V8.

Korrie answered 3/8, 2011 at 20:44 Comment(0)
C
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'

Cabezon answered 3/8, 2011 at 20:46 Comment(1)
Give more information, pleaseSooksoon
G
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.

Georgiannegeorgic answered 23/12, 2011 at 6:30 Comment(0)
L
1

You can use AppJs

Build Desktop Applications for Linux, Windows and Mac using HTML, CSS and Javascript. I'm planning to use it too.

Loma answered 17/10, 2012 at 23:32 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.