Jump to content

User:Ninja9578/libJSON

From Wikipedia, the free encyclopedia
libJSON
Developer(s)Jonathan Wallace
Stable release
4.3 / April 2, 2010 (2010-04-02)
Operating systemCross-platform
TypeAPI
LicenseGNU Public License
Websitehttp://sourceforge.net/projects/libjson/

libJSON is a fast, lightweight JSON parser written in C++. It is free and open source, released under the GNU Public License.

Features[edit]

  • Fast - libJSON does lazy json parsing, meaning that it only parses what it needs when it needs it, giving it a minute speed and memory footprint.
  • Portable - libJSON requires no 3rd part libraries, it can compile in any standard C++ compiler.
  • Complete - libJSON is fully compliant with the JSON standard. [1]
  • Language independent - In dynamic library form, any language that uses standard C cdecl methods can use libJSON.
  • C++ specific bindings - libJSON comes with bindings for C++ to allow libJSON to be embedded into a project.

References[edit]

External links[edit]