Boost.Asio
Asio C++ Library (by chriskohlhoff)
Oat++
🌱Light and powerful C++ web framework for highly scalable and resource-efficient web application. It's zero-dependency and easy-portable. (by oatpp)
Boost.Asio | Oat++ | |
---|---|---|
20 | 24 | |
5,184 | 8,130 | |
1.7% | 1.1% | |
9.1 | 7.8 | |
21 days ago | 10 days ago | |
C++ | C++ | |
- | Apache License 2.0 |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Boost.Asio
Posts with mentions or reviews of Boost.Asio.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-06-08.
-
How to synchronize access to application data in multithreaded asio?
Indeed looks like it, strand_executor_service.hpp is using a Mutex internally (otherwise it wouldn't make sense to me).
-
how do i include header only libraries to my project.
as a side note, Asio is also released as an independent library without the boost stuff https://think-async.com/Asio/
-
Any recommendations to use instead of Asio now that standalone version is dead?
Now that vinniefalco is going to kill off the asio standalone (see deprecate standalone ) and only support boost what would people then recommend to switch over to.
- Not young programmer wants to find source to liquidate gap in modern C++ knowledge.
-
LumoclastFW 10 - Networking System
The ASIO framework can be found at https://think-async.com/Asio/ and the relevant license for its use is included in the GitHub repository in the Vendor/licenses directory.
-
C++ 2D Game Development Stream 12 Notes
The library is found at https://think-async.com/Asio/.
-
Multiplayer Networking Solutions
Asio Extracted from the much bigger Boost C++ library, it's apparently a really good networking library. As a bonus it also handles async / threads. Here's a really good video tutorial by OneLoneCoder
-
My experience with C++ 20 coroutines
Yes: https://github.com/chriskohlhoff/asio/blob/master/asio/include/asio/coroutine.hpp
-
Can anybody recommend a good place to gig hire software engineers?
Here's the main contributor to Asio. I looked at Asio's repository and this was the first guy.
- Ask HN: What are some examples of elegant software?
Oat++
Posts with mentions or reviews of Oat++.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-07-22.
-
Serving Static Files and Single Page Applications on Oat++ (OatPP)
Oat++(OatPP) is a lightweight C++ Web framework. Out of the box, it provides REST API with built-in JSON serialization/deserialization features, which could be interfaced with your DTOs.
-
Installing and Using The OatPP (Oat++) Library
mkdir temp && cd temp git clone https://github.com/oatpp/oatpp.git
-
Experience using crow as web server
I looked at oatpp and drogon, which are both great, but feel too high-level for my purposes. I tried drogon and got something working, but it feels like too much for my requirements, as in particular I'd like to slot in my choice of Json and message-body handling. C.f. the simple approach in Crow, which I easily understand and build on.
-
What isn't cpp used on web servers as much as other languages?
With the right libraries, C++ could be a good fit for applications that want to expose a fast web API to things that need lots of compute (simulators, for instance) or I/O (interactive editing of large datasets). Projects like Oat++ and Crow give me hope that we might see such an ecosystem develop.
-
REST APIs using C++. (Is this even done much?)
Lots of other options have been mentioned, but I'll throw Oat++ into the mix. I used it for this purpose and it was reasonably painless.
- C/C++ framework for REST API implementation
-
People talking about C++ and Java as bad languages. Let me introduce to you: Java++
https://github.com/oatpp/oatpp +WASM ;)
-
Server with oat++. Installation. CmakeLists.txt
cd "some/temp/path/for/repositories" git clone https://github.com/oatpp/oatpp.git cd oatpp mkdir build && cd build cmake .. (sudo) make install
-
How to use C++ as the backend for web dev?
Maybe use something like https://oatpp.io to create a REST API: C++ in the backend with this library to create a REST server, and the JavaScript/TypeScript frontend to ask for the information.
-
making a web server in c++?
I've used OATPP ( https://github.com/oatpp/oatpp ) which worked nicely for setting up simple rest interfaces. Supports things like swagger & websockets out of the box. It's also on Conan which is nice if you use cmake. I can't speak to it's performance but it has about a 1mb binary size footprint.
What are some alternatives?
When comparing Boost.Asio and Oat++ you can also consider the following projects:
libuv - Cross-platform asynchronous I/O
Crow - Crow is very fast and easy to use C++ micro web framework (inspired by Python Flask)
libevent - Event notification library
drogon - Drogon: A C++14/17 based HTTP web application framework running on Linux/macOS/Unix/Windows [Moved to: https://github.com/drogonframework/drogon]
libev - Full-featured high-performance event loop loosely modelled after libevent
Pistache - A high-performance REST toolkit written in C++