Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GUI apps in javascript without a browser?

I would like to use javascript to develop general-purpose GUI applications. Initially these are to run on Windows, but I would like them to ultimately be cross-platform.

Is there a way to do this without having to make the application run in a browser?

like image 578
AJ. Avatar asked Sep 23 '08 08:09

AJ.


People also ask

Can JavaScript be used without browser?

You can run JavaScript console in terminal or any command-line interface using Node. js, an open-source, platform-agnostic runtime that executes JavaScript outside a web browser.

Can you use JavaScript for GUI?

Electron framework This library lets you create desktop GUI applications with web technologies like JavaScript, HTML and CSS.

Is JavaScript only for web apps?

JavaScript isn't only used to create websites. It can also be used to build browser-based games and, with the help of certain frameworks, mobile apps for different operating systems.

Can JavaScript standalone?

Standalone JavaScript shellsThe following JavaScript shells are stand-alone environments, like Perl or Python. Node. js - Node. js is a platform for easily building fast, scalable network applications.


2 Answers

Check out Adobe AIR.

From Wikipedia:

Adobe AIR is a cross-platform runtime environment for building rich Internet applications using Adobe Flash, Adobe Flex, HTML, or Ajax, that can be deployed as a desktop application.

Also check out Mozilla Prism (in beta).

like image 96
Steve M Avatar answered Oct 11 '22 18:10

Steve M


JsLibs

Today I came across this: http://code.google.com/p/jslibs/
(from DZone) JS Libs seems to meet my requirement. I'll have a look, and if I find that it's interesting, I'll post back here.

like image 37
AJ. Avatar answered Oct 11 '22 17:10

AJ.