Registry / web-framework / crow
library1.3.0vcpkgunverified

Very fast and easy to use C++ micro web framework

vcpkg install crow
INSTALL
IMPORT
SIG · CROW
C
crow
web-frameworkcppv1.3.0
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.

crow.h
#include <crow.h>

Create a simple HTTP server

#include "crow.h" int main() { crow::SimpleApp app; CROW_ROUTE(app, "/")([]() { return "Hello world"; }); app.port(8080).multithreaded().run(); return 0; }
Debug
Known issues
gotchaCrow is header-only but requires linking to Boost.Asio and other dependencies
fix
Ensure all dependencies (Boost, OpenSSL) are linked correctly in CMake
affects: *
Upgrade
Version history
1.3.0latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
33 hits · last 30 days
node
30
Amazon
1
Resources

No resource links recorded.

crow — pip install crow · libregistry