https://github.com/pb-/jsonstream
Streaming tokenizer for JSON
https://github.com/pb-/jsonstream
golang json json-parser
Last synced: about 2 months ago
JSON representation
Streaming tokenizer for JSON
- Host: GitHub
- URL: https://github.com/pb-/jsonstream
- Owner: pb-
- License: mit
- Created: 2017-10-12T18:29:53.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-12T18:32:09.000Z (over 8 years ago)
- Last Synced: 2025-10-29T05:24:19.376Z (8 months ago)
- Topics: golang, json, json-parser
- Language: Go
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
About
=====
jsonstream is a tokenizer for a stream of json tokens. The main feature jsonstream provides over the standard library and other json parsers is a mechanism to stream very long string values in a json document without allocating memory linear in the size of the string.
Note that jsonstream is a tokenizer and not a parser. You will have to do the parsing yourself.