需要は多分ない。 ヘッダオンリーなのでインクルードすれば使えます。 https://github.com/nocotan/otus 依存 Boost cpp-netlib Hello World #include "otus.h" int main() { ots::otus app = ots::otus(); app.route("/", "GET", [](ots::request req){ return "Hello, World!"; }); app.run("localhost", "8080"); return 0; } #include "otus.h" int main() { ots::otus app = ots::otus(); app.route("/", "GET", [](ots::request req){ return ots::render_templ