Magic Enum C++ VS daw_json_link

Compare Magic Enum C++ vs daw_json_link and see what are their differences.

Magic Enum C++

Static reflection for enums (to string, from string, iteration) for modern C++, work with any enum type without any macro or boilerplate code (by Neargye)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
Magic Enum C++ daw_json_link
44 21
4,390 422
- -
8.4 8.6
4 days ago 10 days ago
C++ C++
MIT License Boost Software License 1.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.

Magic Enum C++

Posts with mentions or reviews of Magic Enum C++. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-08.

daw_json_link

Posts with mentions or reviews of daw_json_link. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-27.
  • Has Boost lost its charm?
    3 projects | /r/cpp | 27 Apr 2023
    They might have good luck with https://github.com/beached/daw_json_link it has support for stuff like JSON lines and alike plus other ways that only use as much ram as their underlying data structures do as it parses directly to the user DS. Plus it has an iterator/range interface for things like arrays if needed.
  • New, fastest JSON library for C++20
    8 projects | /r/cpp | 13 Oct 2022
    We will add more benchmarks in the future, but for now you can see the comparison of daw_json_link with rapidjson. glaze is faster than daw_json_link, which is over twice as fast as rapidjson.
  • What are some cool modern libraries you enjoy using?
    32 projects | /r/cpp | 18 Sep 2022
    I am biased, but prefer https://github.com/beached/daw_json_link Super fast and you work with your native data structures without the overhead of DOM parsing/lookup
  • How to deserialise json into a C++ struct?
    2 projects | /r/cpp_questions | 16 Sep 2022
    You can also look into https://github.com/beached/daw_json_link which claims to support nullable values in the readme.
  • Show HN: DAW JSON Link
    4 projects | news.ycombinator.com | 12 Aug 2022
  • JSON for Modern C++ 3.11.0
    7 projects | /r/cpp | 1 Aug 2022
    The library I author does this. https://github.com/beached/daw_json_link . It's fast, GB/s too, and provides the mapping mechanism, iteration types, json lines support, event based parser, along with a non-owning json_value for when the mappings don't fit right or if one is querying. Pretty much everything but an owning JSON value as it's not something I've ever needed more than temporarily and brings a lot of complexity that is solved by using the actual C++ data structures one is eventually parsing into anyways.
  • DAW JSON Link v3, a JSON serialization/deserialization library, is released
    10 projects | /r/cpp | 1 Jul 2022
    So DAW JSON Link does have a DOM view, however it does not have a owning view. The json_value(even supports JSON Path in a limited form) type and json_raw mappings can help here. But there is no hard line between parsing view the json_value and the mappings to concrete data structures. One can mix and match.
  • Parsing JSON faster with Intel AVX-512
    1 project | /r/programming | 31 May 2022
    Is this the repo? Never saw it linked in our convo, and I’d like to give it a whirl.
  • Is there something like GSON available in C++?
    3 projects | /r/cpp | 20 May 2022
    daw_json_link is what you're looking for : https://github.com/beached/daw_json_link
  • Deserializing JSON Fast
    3 projects | news.ycombinator.com | 1 Jan 2022
    Check out https://github.com/beached/daw_json_link , it provides a non-typeerased way to parse JSON straight into user-defined data structures.

What are some alternatives?

When comparing Magic Enum C++ and daw_json_link you can also consider the following projects:

Nameof C++ - Nameof operator for modern C++, simply obtain the name of a variable, type, function, macro, and enum

json_struct - json_struct is a single header only C++ library for parsing JSON directly to C++ structs and vice versa

Protobuf - Protocol Buffers - Google's data interchange format

simdjson - Parsing gigabytes of JSON per second : used by Facebook/Meta Velox, the Node.js runtime, ClickHouse, WatermelonDB, Apache Doris, Milvus, StarRocks

cereal - A C++11 library for serialization

json - JSON for Modern C++

FlatBuffers - FlatBuffers: Memory Efficient Serialization Library

RapidJSON - A fast JSON parser/generator for C++ with both SAX/DOM style API

Boost.Serialization - Boost.org serialization module

Crow - A Fast and Easy to use microframework for the web.

pfr - std::tuple like methods for user defined types without any macro or boilerplate code

JsonCpp - A C++ library for interacting with JSON.