Registry / web-framework / restinio

restinio

JSON →
library0.7.9vcpkgunverified

A header-only C++14 library that gives you an embedded HTTP/Websocket server targeted primarily for asynchronous processing of HTTP-requests.

vcpkg install restinio
INSTALL
IMPORT
SIG · RESTINIO
R
restinio
web-frameworkcppv0.7.9
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.

restinio/all.hpp
✓ #include <restinio/all.hpp>

Minimal HTTP server using restinio.

#include <restinio/all.hpp> int main() { restinio::run( restinio::on_this_thread() .port(8080) .address("localhost") .request_handler([](auto req) { return req->create_response().set_body("Hello, World!").done(); })); return 0; }
Debug
Known issues
gotchaHeader-only but requires linking to Asio or Boost.Asio.
fix
Ensure you link against the appropriate Asio library (e.g., Boost::asio).
affects: all
Upgrade
Version history
0.7.9latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
8 hits · last 30 days
node
8
Resources

No resource links recorded.

restinio — pip install restinio · libregistry