Modern C++ · Built for the Web

Mach

Fast, type-safe web applications, built with modern C++.

Mach combines asynchronous networking with a clean, expressive API for building high-performance HTTP services in C++20.

#include <mach/mach.hpp>

int main() { auto builder = mach::AppBuilder(); auto app = builder.build();
app.mapGet("/hello", [] { return mach::ok("Hello, world!"); });
return app.run(); }
Launching soon