Registry / web-framework / qthttpserver

qthttpserver

JSON →
library6.10.1vcpkgunverified

Qt HTTP Server supports building HTTP server functionality into an application.

vcpkg install qthttpserver
INSTALL
IMPORT
SIG · QTHTTPSERVER
Q
qthttpserver
web-frameworkcppv6.10.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

QHttpServer
#include <QHttpServer>

Create a simple HTTP server

#include <QHttpServer> #include <QCoreApplication> int main(int argc, char *argv[]) { QCoreApplication app(argc, argv); QHttpServer server; server.route("/", []() { return "Hello, world!"; }); server.listen(QHostAddress::Any, 8080); return app.exec(); }
Debug
Known issues
breakingQt HTTP Server is only available for Qt 6.5+.
fix
Use Qt 6.5 or later and link against Qt6::HttpServer.
affects: <6.5.0
Upgrade
Version history
6.10.1latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources

No resource links recorded.

qthttpserver — pip install qthttpserver · libregistry