open-source-parsers/jsoncpp — explained in plain English
Analysis updated 2026-06-24
Embed JSON parsing in a C++ application using a stable, widely packaged library.
Store human-editable config files that preserve comments across reads and writes.
Add JSON support to a C++ project via vcpkg, Conan, or a generated single-file drop-in.
| open-source-parsers/jsoncpp | dusty-nv/jetson-inference | klzgrad/naiveproxy | |
|---|---|---|---|
| Stars | 8,837 | 8,848 | 8,868 |
| Language | C++ | C++ | C++ |
| Setup difficulty | easy | hard | hard |
| Complexity | 2/5 | 4/5 | 4/5 |
| Audience | developer | developer | ops devops |
Figures from each repo's GitHub metadata at analysis time.
Available via vcpkg, Conan, Meson, or as a generated single-file include, no special infrastructure required.
JsonCpp is a C++ library that lets programs read and write JSON data. JSON is a text format widely used to exchange information between systems, storing things like lists of values, key-value pairs, and numbers or strings. JsonCpp handles converting that text into data your program can work with, and converting it back to text when you need to save or send it. One feature that sets JsonCpp apart from similar libraries is that it can preserve comments when reading and writing JSON files. This makes it practical for storing configuration files that humans need to edit, since comments are normally stripped out by most JSON tools. The project is in maintenance mode, which means the team is focused on keeping it stable and secure rather than adding new capabilities. Active work covers fixing security issues found through testing, ensuring the library compiles cleanly on recent versions of common C++ compilers, and fixing any bugs that cause incorrect behavior. New features and performance improvements are explicitly out of scope. There are two supported versions. The current main version requires a C++ standard from 2011 or later. An older branch supports compilers that predate that standard, but only receives critical security fixes. The library is available through several common C++ package managers including vcpkg, Conan, and Meson, or you can generate a single-file version to drop directly into your project. JsonCpp is licensed under the MIT license, meaning it can be used freely in both open and closed-source projects.
A C++ library for reading and writing JSON data, with the rare ability to preserve comments, making it practical for config files humans need to edit. Currently in maintenance mode, focused on stability and security.
Mainly C++. The stack also includes C++, CMake, vcpkg.
Use freely for any purpose, including commercial use, as long as you keep the copyright notice.
Setup difficulty is rated easy, with roughly 30min to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Verify against the repo before relying on details.