Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Javascript is widely used to create apps in the web. How about desktop, etc? Gnome Shell is made of it. I'm just curious if there's a way or something which allows devs to access Gnome/Clutter graphics libraries?

share|improve this question

5 Answers

up vote 2 down vote accepted

The three best options that I know of are Rhino (using Swing, or other Java graphics frameworks), Seed, and Gjs.

Seed and Gjs are both Gnome projects that bind the GTK+ and Gnome libraries to JavaScript. Seed uses the JavaScriptCore runtime from WebKit and Gjs uses Mozilla's Spidermonkey engine. Gnome Shell is using Gjs.

Another option that, as far as I know, is still pretty immature is Gom. Instead of just a JavaScript binding for GTK+, it has an HTML-like DOM interface.

share|improve this answer
I also want to point out that both Seed and GJS support Clutter through GObjectIntrospection. – Brian McKenna Mar 24 '10 at 1:00

There are various ways to do this. Besides Rhino, V8/node.js is one of them.

share|improve this answer
+1 for mentioning Node.js, it's a great and fun way to build servers – Robert Gould Feb 23 '10 at 5:57
But it's not really Gnome related. Yet you still get my +1 for mentioning Rhino although it's not as fun. – Robert Gould Feb 23 '10 at 5:58

Yes using Rhino although it looks like a convolated path...

share|improve this answer

Check this recent post by Alan Knowles.

share|improve this answer

I dont know much about the Gnome/Clutter graphics access, But several SSJS (Server-side_JavaScript) available that can work on Linux environments.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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