User:Ninja9578/libJSON
Appearance
This is not a Wikipedia article: It is an individual user's work-in-progress page, and may be incomplete and/or unreliable. For guidance on developing this draft, see Wikipedia:So you made a userspace draft. Find sources: Google (books · news · scholar · free images · WP refs) · FENS · JSTOR · TWL |
Developer(s) | Jonathan Wallace |
---|---|
Stable release | 4.3
/ April 2, 2010 |
Operating system | Cross-platform |
Type | API |
License | GNU Public License |
Website | http://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.