I’m going to document the process I’m going through to build a full-fledged application in Titanium. My goal is to create an application that helps you manage your web-based game activity – almost like a newsreader for web games.

I’ve chosen Titanium because this application is a pseudo website/app. I need to be able to access RSS feeds, as well as display websites within my application, while I also need to store persistent information on the user’s desktop.

I’ve decided to use a combination of jQuery and Ext3.0 as a way to not only learn more about those libraries, but see how well Ext works within Titanium. I fully intend to use as many bells and whistles as possible as this is a dual-purpose app. I want to create something really great while also trying out as many features as possible.

I’m also testing out a new code highlighting feature for the site:

  1. /* this is a comment */
  2. alert("hello world");
  3. var foo = function(){
  4. test = 3;
  5. }