Registry / networking / webcraft

webcraft

JSON →
library1.0.5vcpkgunverified

An async first C++ networking library leveraging powerful features of C++23 built for scale, speed, and ease.

vcpkg install webcraft
INSTALL
IMPORT
SIG · WEBCRAFT
W
webcraft
networkingcppv1.0.5
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.

webcraft/webcraft.h
#include <webcraft/webcraft.h>

Create a simple HTTP server that responds with 'Hello, World!'.

#include <webcraft/webcraft.h> #include <iostream> int main() { auto server = webcraft::Server::create("0.0.0.0", 8080); server->on_request([](auto& req, auto& res) { res.send("Hello, World!"); }); server->run(); return 0; }
Debug
Known issues
breakingRequires C++23 compiler support.
fix
Use a compiler that supports C++23 (e.g., GCC 13+, Clang 16+).
affects: *
Upgrade
Version history
1.0.5latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
16 hits · last 30 days
node
14
Amazon
1
OpenAI (training)
1
Resources

No resource links recorded.

webcraft — pip install webcraft · libregistry