qooxdoo

Universal JavaScript Framework

 

Requirements

Here are the requirements for developing and deploying a qooxdoo application. A typical qooxdoo application is a JavaScript-based "fat-client" that runs in a web browser. It does not enforce any specific backend components, any HTTP-aware server should be fine. The framework comes with a powerful tool chain, that helps both in developing and deploying applications.

It is very straightforward to satisfy the requirements for those three topics (client, server, tools).

Client

A qooxdoo application runs in all major web browsers - with identical look & feel:

../../_images/ie.png Internet Explorer 6+
../../_images/ff.png Firefox 2+
../../_images/opera.png Opera 9+
../../_images/safari.png Safari 3+
../../_images/chrome.png Chrome 2+

Not only the end users of your application benefit from this true cross-browser solution. As a developer you can also pick your preferred development platform, i.e. combination of browser and operating system. Most built-in developer Tools (e.g. for debugging, profiling) work cross-browser as well.

Server

Developing a qooxdoo application does not require a server. Its static application contents (initial html file, JavaScript files, images, etc.) may just be loaded from your local file system.

Of course, for the actual deployment of your final app you would use a web server to deliver the (static) contents. For developing a qooxdoo app it is not a prerequisite to setup a web server, so you can start right away on your local computer.

Any practical qooxdoo client application will communicate with a server, for instance to retrieve and store certain application data, to do credit card validation and so on. qooxdoo includes an advanced RPC mechanism for direct calls to server-side methods. It allows you to write true client/server applications without having to worry about the communication details. qooxdoo offers such optional RPC backends for Java, PHP, Perl and Python. If you are missing your favorite backend language, you can even create your own RPC server by following a generic server writer guide.

If you already have an existing backend that serves HTTP (or HTTPS) requests and you do not want to use those optional RPC implementations, that's fine. It should be easy to integrate your qooxdoo app with your existing backend using traditional AJAX calls.

Tools

qooxdoo comes with a platform-independent and user-friendly tool chain. It is required for creating and developing a qooxdoo application. It is not needed for running an application.

The tool chain only requires to have Python installed. Use a standard Python 2.x release, version 2.5 or above. Python 3 is currently not supported! As a qooxdoo user you do not need any Python knowledge, it is merely a technology used internally for the tools. Python comes either pre-installed on many systems or it can very easily be installed:

image0 Windows

It is trivial! Just download and install the excellent ActivePython package. Its default settings of the installation wizard are fine, there is nothing to configure. (It is no longer recommended to use the Windows package from Python.org, as this requires additional manual configuration).

image1 Cygwin

Cygwin can be used as an optional free and powerful Unix-like environment for Windows. You won't need a native Python installation, just make sure to include Cygwin's built-in Python as an additional package when using Cygwin's setup program.

image2 Mac

Python is pre-installed on Max OS X. No additional software needs to be installed, but on older systems it might need an update.

image3 Linux

Python often comes pre-installed with your favorite distribution. If not, simply use your package manager to install Python.

Table Of Contents

Previous topic

Getting Started

Next topic

Hello World

This Page