awesome-repositories.com
Blog
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoAcerca deCómo clasificamosPrensaServidor MCP
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
nlohmann avatar

nlohmann/json

0
View on GitHub↗
49,944 estrellas·7,415 forks·C++·MIT·6 vistasjson.nlohmann.me↗

Json

This library is a header-only C++ framework designed for the serialization, parsing, and manipulation of structured data. It provides a recursive variant data model that represents arbitrary structures as native types, allowing developers to navigate, modify, and patch hierarchical data using standard pointer paths and declarative update patterns.

The project distinguishes itself through its template-based architecture, which enables type-safe data structures and custom type mapping at compile time. It offers a unified interface for binary format abstraction, supporting multiple compact representations to optimize storage and transmission. Additionally, the library implements an event-driven parsing model to minimize memory usage during large document traversal and provides native-like integration by mimicking standard container interfaces and iterator patterns.

Beyond its core serialization and parsing capabilities, the library includes comprehensive tools for document patching, merging, and granular data modification. It supports flexible configuration for handling non-standard syntax, character encodings, and key order preservation, ensuring compatibility with diverse data requirements.

The library is distributed as a single-header file, facilitating integration into existing projects through source embedding or standard package management systems.

Features

  • Data Serialization and Parsing - Reads and writes data from various sources while providing control over validation and output formatting.
  • JSON Processors - Implements a specialized engine for navigating and modifying hierarchical JSON structures using pointer paths.
  • Serialization Libraries - Converts complex application objects into structured text formats for storage or network transmission.
  • Recursive Data Models - Represents arbitrary JSON structures using a single recursive variant type.
  • Binary Data Formats - Provides a unified interface for encoding and decoding data into multiple compact binary representations.
  • Serialization Frameworks - Provides a robust framework for serializing complex objects into multiple formats with strict schema validation.
  • Data Formats - Modern C++ JSON library.
  • Data Formats and Parsing - JSON parse, serialize, and deserialize.
  • Databases & Data - JSON library for modern C++
  • Procesamiento de JSON - Comprehensive JSON library for modern C++.
  • Serialization and Formats - JSON support for modern C++.
  • Serialization and Parsing - Widely used JSON library for modern C++.
  • Code Quality and Patterns - Intuitive JSON library for C++ applications.
  • Developer Tooling - Modern JSON library for C++ development.
  • Json - Listed in the “Json” section of the Awesome Cpp Cn awesome list.
  • Binary Serialization - Transforms structured information into compact binary representations to optimize storage space.
  • Streaming Parsers - Processes input streams by triggering callbacks for each structural element to minimize memory usage.
  • Custom Type Converters - Defines conversion functions to map user-defined structures to data formats.
  • Data Lookup Interfaces - Accesses specific data points within structured data using direct key lookups or collection-based indexing.
  • JSON Patching - Updates objects by applying standard merge patches to integrate new values into existing structures.
  • Serialization Policies - Employs template specialization to map custom user-defined types directly into the library data model.
  • Type Mapping Frameworks - Defines automated conversion rules to map user-defined application structures directly into standardized data formats.
  • C & C++ Ecosystem - Ships as a header-only library for intuitive parsing and manipulation of structured data in C++.
  • Generics & Templates - Uses C++ templates to generate type-safe data structures at compile time.
  • Data Modification APIs - Updates data by adding, inserting, or removing elements, and manages object lifecycles.
  • Document Patching Utilities - Implements standard document modification protocols by traversing nested structures using path-based identifiers.
  • Type Extraction Utilities - Converts stored data into native types or writes values directly into destination variables.
  • Standard Libraries - Exposes data structures through standard iterator patterns and container aliases.

Historial de estrellas

Gráfico del historial de estrellas de nlohmann/jsonGráfico del historial de estrellas de nlohmann/json

Búsqueda con IA

Explora más repositorios increíbles

Describe lo que necesitas en lenguaje sencillo: la IA clasifica miles de proyectos open-source curados por relevancia.

Start searching with AI

Preguntas frecuentes

¿Qué hace nlohmann/json?

This library is a header-only C++ framework designed for the serialization, parsing, and manipulation of structured data. It provides a recursive variant data model that represents arbitrary structures as native types, allowing developers to navigate, modify, and patch hierarchical data using standard pointer paths and declarative update patterns.

¿Cuáles son las características principales de nlohmann/json?

Las características principales de nlohmann/json son: Data Serialization and Parsing, JSON Processors, Serialization Libraries, Recursive Data Models, Binary Data Formats, Serialization Frameworks, Data Formats, Data Formats and Parsing.

¿Qué alternativas de código abierto existen para nlohmann/json?

Las alternativas de código abierto para nlohmann/json incluyen: tencent/rapidjson — RapidJSON is a header-only C++ library designed for high-performance parsing, generation, and manipulation of JSON… simdjson/simdjson — simdjson is a high-performance, header-only C++ library designed for parsing, querying, and serializing JSON data with… google/flatbuffers — FlatBuffers is a cross-platform serialization library designed for performance-critical applications that require… davegamble/cjson — cJSON is a lightweight library for parsing, creating, and modifying JSON data structures within C applications. It… kazuho/picojson — a header-file-only, JSON parser serializer in C++. open-source-parsers/jsoncpp — JsonCpp is a C++ library for parsing, manipulating, and generating JSON data. It functions as a data interchange tool…

Alternativas open-source a Json

Proyectos open-source similares, clasificados según cuántas características comparten con Json.
  • tencent/rapidjsonAvatar de Tencent

    Tencent/rapidjson

    15,000Ver en GitHub↗

    RapidJSON is a header-only C++ library designed for high-performance parsing, generation, and manipulation of JSON data. It functions as a dual-mode engine, providing both an in-memory document object model for tree-based manipulation and a stream-based interface for event-driven processing. The library is built to minimize memory footprint and maximize execution speed, making it suitable for resource-constrained environments. The library distinguishes itself through advanced memory management and optimization techniques, including in-situ parsing that modifies input buffers directly to elimi

    C++
    Ver en GitHub↗15,000
  • simdjson/simdjsonAvatar de simdjson

    simdjson/simdjson

    23,260Ver en GitHub↗

    simdjson is a high-performance, header-only C++ library designed for parsing, querying, and serializing JSON data with minimal memory overhead. It functions as a hardware-aware data processing engine that leverages vector instructions to achieve gigabyte-per-second parsing speeds. By detecting host processor capabilities at runtime, the library automatically selects the most efficient instruction sets to accelerate structural analysis and validation. The library distinguishes itself through a focus on extreme efficiency and resource management. It utilizes memory mapping and padded buffer ali

    C++aarch64arm64avx2
    Ver en GitHub↗23,260
  • google/flatbuffersAvatar de google

    google/flatbuffers

    25,558Ver en GitHub↗

    FlatBuffers is a cross-platform serialization library designed for performance-critical applications that require efficient, zero-copy data access. By organizing data in a structured binary format, it allows applications to read and write complex data structures directly from memory-mapped buffers without the need for intermediate parsing or temporary object allocation. The project distinguishes itself through a schema-driven approach that balances high-performance access with long-term data evolution. It utilizes a unique memory layout featuring relative offsets and inline fixed-size structu

    C++cc-plus-plusc-sharp
    Ver en GitHub↗25,558
  • kazuho/picojsonAvatar de kazuho

    kazuho/picojson

    1,153Ver en GitHub↗

    a header-file-only, JSON parser serializer in C++

    C++
    Ver en GitHub↗1,153
  • Ver las 30 alternativas a Json→