Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Palm Pre frameworks

I have some measure of web development experience (not my main skill, but I am pretty good with the basics)

What I'm sorely lacking is knowledge of and experience with modern JS frameworks (Prototype, jQuery, YUI, whatnot). I'd like to play with them (all eventually but need to start with one).

Here's the problem: I'm very interested in trying out my skills on Palm Pre eventually. To the extent that the main criteria for choosing which JS framework to learn first for me is this:

Which mainstream modern JS framework is the most useful to learn if the main criteria is "knowing this will help me most to develop for Palm Pre"?

I'm assuming it will be one of the 3 I mentioned: jQuery/YUI/Prototype, unless I'm missing some major well known JS/wevdev framework? I intend to try all those 3 eventually so their relative merits outside of helping on PalmPre are not majorly important.

Thanks!

like image 900
Aye Avatar asked Oct 09 '09 19:10

Aye


1 Answers

The framework that Palm provides in the SDK is called Mojo.

Mojo is built on top of Prototype, therefore you will automatically have access to Prototype when you work on the Pre, and you will have to make use of it for various system calls.

Therefore, you are probably going to get the most benefit from learning Prototype.

That said, it is possible to add other js libraries like jQuery if you prefer to use those for your Pre apps.

Check out the webOSdev API Reference for more information about the Mojo Framework.

like image 138
TM. Avatar answered Sep 20 '22 14:09

TM.