Skip to content

kleopatra999/jsonarray

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jsonarray -- Streaming decoder for JSON arrays

Go library for decoding very large or streaming JSON arrays.

Many streaming JSON APIs give you newline-separated JSON. That's easy to parse, just keep calling json.Decoder.Decode.

Sometimes, streaming APIs, and especially JSON databases, just return a very large JSON array as their result. This is not as easy to handle. jsonarray makes it easy.

(If the large array isn't the outermost JSON object, that's still harder to get right. Ideas for API that can handle that are welcome.)

Use the Go import path

github.com/tv42/jsonarray

Documentation at http://godoc.org/github.com/tv42/jsonarray

About

Streaming decoder for JSON arrays

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%