C++ Expressjs
Simple and fast HTTP-Framework build on C++ providing an API similar to Express.js
Getting Started
#include "express.h"
int main() {
Express express = Express();
express.setup(8080);
while(true) express.listen();
return 0;
}License
This project is licensed under the MIT License.

