A streaming JSON parser based on jsmn by Serge Zaitsev. The code has been rewritten to take an input stream character by character and emit events to user supplied callbacks. Such a parsing scheme is especially beneficial on embedded systems where the whole parse tree (and possibly the whole JSON string) cannot be stored in RAM at once.
See the examples folder.
Like the original jsmn project, this one is licensed under the MIT license.