This section is maintained by the qooxdoo community. Here is how you can contribute.

Getting Started

The fastest way to create your own Hello World application is:

mvn qx:new -Dpackage=org.qooxdoo.hello
cd hello
mvn compile
mvn qx:run

Point your browser to http://localhost:8080/ to see it in action.

What happened?

  • mvn invokes Maven
  • mvn qx:new generates a skeleton application into a new directory hello. Code is placed in the package org.qooxdoo.hello.
  • mvn compile runs the Java compiler on the application
  • mvn qx:run starts "Tomcat", which is the server that runs your application.
  • Pointing your browser to http://localhost:8080 starts the application inside Tomcat. The file hello/target/webapp/main/index.html is generated and sent to your browser.

What's next

Open the application in Eclipse.