conan-center-index VS C++ REST SDK

Compare conan-center-index vs C++ REST SDK and see what are their differences.

C++ REST SDK

The C++ REST SDK is a Microsoft project for cloud-based client-server communication in native code using a modern asynchronous C++ API design. This project aims to help C++ developers connect to and interact with services. (by microsoft)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
conan-center-index C++ REST SDK
41 13
892 7,800
2.7% 0.8%
10.0 3.6
3 days ago 4 months ago
Python C++
MIT License MIT License
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.

conan-center-index

Posts with mentions or reviews of conan-center-index. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-02.
  • The xz attack shell script
    5 projects | news.ycombinator.com | 2 Apr 2024
    Conan is a package manager for C/C++. See: https://conan.io/.

    The way it works is that you can provide "recipes", which are Python scripts, that automate the process of collecting source code (usually from a remote Git repository, or a remote source tarball), patching it, making its dependencies and transitive dependencies available, building for specific platform and architecture (via any number of build systems), then packaging up and serving binaries. There's a lot of complexity involved.

    Here are the two recipes I mentioned:

    libcurl: https://github.com/conan-io/conan-center-index/blob/master/r...

    OpenSSL v3: https://github.com/conan-io/conan-center-index/blob/master/r...

    Now, for the sake of this thread I want to highlight three things here:

    - Conan recipes are usually made by people unaffiliated with the libraries they're packaging;

    - The recipes are fully Turing-complete, do a lot of work, have their own bugs - therefore they should really be treated as software comonents themselves, for the purpose of OSS clearing/supply chain verification, except as far as I know, nobody does it;

    - The recipes can, and do, patch source code and build scripts. There's supporting infrastruture for this built into Conan, and of course one can also do it by brute-force search and replace. See e.g. ZLib recipe that does it both at the same time:

    https://github.com/conan-io/conan-center-index/blob/7b0ac710... -- `_patch_sources` does both direct search-and-replace in source files, and applies the patches from https://github.com/conan-io/conan-center-index/tree/master/r....

    Now, good luck keeping track of what's going on there.

  • Mokara.io Open Beta (Pre-Built C++ Third-Party Libraries)
    1 project | /r/cpp | 27 Jun 2023
    Just checkout ConanCenter https://conan.io/center it's free.
  • Looking for projects to contribute to
    16 projects | /r/cpp | 25 Apr 2023
    https://github.com/conan-io/conan-center-index there's 200+ PR that need reviewing :) we add community reviewers fairly often
  • Conan package manager completely broken after 2.0 release
    6 projects | /r/cpp | 21 Mar 2023
    As for ffmpeg it was last updated 10 days ago https://github.com/conan-io/conan-center-index/commits/master/recipes/ffmpeg/all :)
  • PcapPlusPlus in Conan 2.0
    2 projects | /r/cpp | 16 Mar 2023
    This is a more complicated recipe https://github.com/conan-io/conan-center-index/blob/master/recipes/pcapplusplus/all/conanfile.py
  • OpenSSL 3.1 Released
    1 project | news.ycombinator.com | 14 Mar 2023
    You can use the Conan package manager with prebuilt binaries/libraries

    https://conan.io/center

  • Compiling CrowCPP on Windows and about to kms
    3 projects | /r/cpp | 8 Mar 2023
    It's available in Conan too https://github.com/conan-io/conan-center-index/tree/master/recipes/crowcpp-crow though it's not well maintained so no promises if it's working
  • Is there a way to make sure that my friend on windows can compile my c++ project that i made on linux?
    1 project | /r/learnprogramming | 8 Mar 2023
    You need something like https://conan.io/center/ to install the dependencies. You're lucky because it works well with CMake.
  • Conan 2.0, the new version of the open-source C and C++ package manager
    4 projects | /r/cpp | 22 Feb 2023
    This post on github contains a list of packages supported by conan 2.0, its also kept up to date https://github.com/conan-io/conan-center-index/discussions/16196
  • First piece of complex CMake code. Need good roasting to help improeve.
    1 project | /r/cmake | 18 Feb 2023
    Use a package manager: https://vcpkg.link/ https://conan.io/center/

C++ REST SDK

Posts with mentions or reviews of C++ REST SDK. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-06.
  • What is the industry standard today in C++ to deploy REST microservices in Kubernetes?
    5 projects | /r/cpp | 6 Sep 2023
    My favourite was Microsoft's cpprestsdk, but for some reason now is in maintenance mode, I don't know why, so it's hard to suggest it for new projects. A nice alternative is restc-cpp, that's has a good high-level interface, if this is what you want.
  • REST APIs using C++. (Is this even done much?)
    13 projects | /r/cpp | 29 Mar 2023
    CppRestSDK is deprecated.
  • C++ REST API Framework
    1 project | /r/cpp_questions | 26 Nov 2022
  • REST library: production 'ready'
    3 projects | /r/cpp_questions | 20 Jun 2022
    https://github.com/microsoft/cpprestsdk (concerned about being maintenance mode -> production?)
  • Have there been any attempts to build a REST API service on top of either Boost.asio or Boost.beast?
    2 projects | /r/cpp | 23 Apr 2022
    While it's not based on Boost Asio or Beast, Microsoft maintains a SDK for developing REST api's using C++, aptly named the C++ REST SDK. Here you can find the Github page. It pretty much covers everything you'd come to expect from a modern webserver package. It does come with a steep learning curve however.
  • Microsoft YARP
    8 projects | news.ycombinator.com | 20 Feb 2022
    I never thought I'd laud microsoft on open source software but this has certainly made my life easier... I mean come on, MIT licensed and everything...

    https://github.com/microsoft/cpprestsdk

  • Web services in C++
    1 project | /r/developersIndia | 24 Sep 2021
    Assuming you want to make a REST API check this out: https://github.com/Microsoft/cpprestsdk
    2 projects | /r/cpp | 24 Sep 2021
  • Thriving in a Crowded and Changing World: C++ 2006–2020 [pdf]
    5 projects | news.ycombinator.com | 16 Jul 2021
    >But is it truly practical to use in 'higher-abstraction' apps like web or mobile?

    Yes absolutely. Once you become familiar with the language the barrier is not that high. Familiarity trumps everything else.

    That said, since i am not a Web/mobile developer i had collected some resources to help me learn how to use C++ for Web/Mobile apps, you may find it useful;

    https://levelup.gitconnected.com/cross-platform-mobile-and-w...

    https://github.com/Microsoft/cpprestsdk

    https://medium.com/@ivan.mejia/modern-c-micro-service-implem...

  • cpprestsdk in maintenance mode
    17 projects | /r/cpp | 8 Jun 2021
    I was starting a project that needs to read data with rest API and I'd like to use cpprestsdk from Microsoft. But it's readme says that's in maintenance mode and it's not recommended for new projects... I'd like to know why it's in maintenance mode, and if it will be abandoned. Also, if there's some equivalent library for cpp, instead of creating the business logic from scratch, i.e. with boost::beast.

What are some alternatives?

When comparing conan-center-index and C++ REST SDK you can also consider the following projects:

Vcpkg - C++ Library Manager for Windows, Linux, and MacOS

Boost.Beast - HTTP and WebSocket built on Boost.Asio in C++11

libpq - build2 package for PostgreSQL C client library

libcurl - A command line tool and library for transferring data with URL syntax, supporting DICT, FILE, FTP, FTPS, GOPHER, GOPHERS, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, MQTT, POP3, POP3S, RTMP, RTMPS, RTSP, SCP, SFTP, SMB, SMBS, SMTP, SMTPS, TELNET, TFTP, WS and WSS. libcurl offers a myriad of powerful features

VulkanExamples - Examples and demos for the Vulkan C++ API

Restbed - Corvusoft's Restbed framework brings asynchronous RESTful functionality to C++14 applications.

cmake-init-vcpkg-example - cmake-init generated executable project with vcpkg integration

POCO - The POCO C++ Libraries are powerful cross-platform C++ libraries for building network- and internet-based applications that run on desktop, server, mobile, IoT, and embedded systems.

neuronika - Tensors and dynamic neural networks in pure Rust.

Simple-WebSocket-Server

std-simd - std::experimental::simd for GCC [ISO/IEC TS 19570:2018]

drogon - Drogon: A C++14/17 based HTTP web application framework running on Linux/macOS/Unix/Windows [Moved to: https://github.com/drogonframework/drogon]