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.
- C++20
- Asynchronous
- Type-safe
- Cross-platform
#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