How are Rhodes, Phonegap, and Appcelerator able to take Javascript or Ruby, and compile them into binaries for app SDKs that normally require apps to be written in Obj-C, Java, and others?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Phonegap uses the default browser rendering engine, and uses that to display your application. The javascript is then handled by the native (compiled) part of the framework.

Appcelerator uses something simular, but compiles the whole application if i remember correctly.

MoSync uses a somewhat simular setup as javaME.

Rhodes uses local server. It uses this to communicate with the device.

link|improve this answer
Rhodes uses a local server, meaning a tiny Ruby server local to the mobile device? – user94154 Jan 9 '11 at 21:36
1  
As a simple answere: Yes – Erik Jan 11 '11 at 8:47
1  
Appcelerator doesn't use the device browser (unless you specifically want to), it uses native controls. – Alan B Mar 11 '11 at 11:07
feedback

A Javascript interpreter is built into the webkit browser engine, and the iPhone/iOS SDK gives enough access to this interpreter to run nearly an entire app written in Javascript, with just a tiny Objective C wrapper to start things up.

Android supports native ARM machine code though the NDK, so nearly any language with a compiler that can create a stand-alone ARM binary (but requiring little to no OS access) can be used as a library and accessed via the NDK interface from a Java app stub.

link|improve this answer
Very interesting. Do you know how Rhodes can go from HTML + ERB to webkit Javascript to Obj-C binaries? – user94154 Dec 27 '10 at 7:20
feedback

Jeff Haynie, Appcelerator co-founder, explains how Titanium Mobile works here.

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.