Web App with Qt
-
Hi,
Qt has many technologies to create "web-oriented" application like the recent Qt cloud services, QWebKit, etc. What would be the possible combinations to create a web app using Qt as much as possible?
As an example (not sure if it is possible), what about:
- Backend: Qt Managed Application Runtime + Enginio;
- Frontend: QML in the browser?Thanks for your input!
-
There are many attempts to run Qt in the browser. One of the notable ones is "QtWui":http://qtwui.sourceforge.net/ . It allows you to run a Qt app as a webserver that translates the c++ code to html.
Another one is "emscripten-qt":http://vps2.etotheipiplusone.com:30176/redmine/projects/emscripten-qt . Emscripten is a LLVM based compiler that generates javascript, and with this Qt port you can write Qt app as usually and then use emscripten to compile it to javascript that runs in the browser.