Live prototyping applications on Titanium using Livetanium
Jacob wallercame up with an interesting solution to this problem (the announcement on the Appcelerator blog was already on December 3rd last year, but I didn’t wait for a topic about it on the hub): Livetanium , thanks to which you can forget about the time of compilation and installation - changes can be observed in the simulator or on the device immediately after saving the file.
Screencast demonstrating the capabilities of Livetanium: While Livetanium is in an early beta state and works only on the iPhone, but this does not interfere with trying it out. To do this, you need:

- Install node.js:
$ git clone git://github.com/ry/node.git; cd node
$ export JOBS=2 # optional, sets number of parallel commands.
$ mkdir ~/local
$ ./configure --prefix=$HOME/local/node
$ make
$ make install
$ export PATH=$HOME/local/node/bin:$PATH - Download Livetanium:
$ git clone git://github.com/krawaller/Titanium-Tools.git - Configure Livetanium: change line 53 in the file Titanium-Tools / Resources / app.js
K.watch("192.168.10.236", 8128, win); # ip, port, window - Launch node.js server:
$ node Titanium-Tools/Resources/server.js - Import Titanium-Tools into Titanium Developer
- Run the project in the simulator or on the device and try to play with the file Titanium-Tools / Resources / Livetanium / demo.js