Hey guys, I made an open-source Express like non blocking HTTP Server library in C++. Starting a new web server is as simple as initiating the app with the desired port (8080 default) and start registering routes. #include int main() { HttpServer app(3000); app.

Source: [Hacker News](https://amsozzer.com/projects/plusweb)

Sponsored