gojay

high performance JSON encoder/decoder with stream API for Golang
git clone git://git.lair.cx/gojay
Log | Files | Refs | README | LICENSE

commit 95d97d364fb4511c49bf7ad5971aa709b9373350
parent 6a41f788201e627bf442d83df6d4a505ed9dd3cb
Author: francoispqt <francois@parquet.ninja>
Date:   Sun, 24 Jun 2018 23:28:04 +0800

update documentation

Diffstat:
MREADME.md | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md @@ -14,6 +14,8 @@ It has a simple API and doesn't use reflection. It relies on small interfaces to Gojay also comes with powerful stream decoding features and an even faster [Unsafe](#unsafe-api) API. +There is also a [code generation tool](https://github.com/francoispqt/gojay/tree/master/gojay) + # Why another JSON parser? I looked at other fast decoder/encoder and realised it was mostly hardly readable static code generation or a lot of reflection, poor streaming features, and not so fast in the end. @@ -31,7 +33,7 @@ go get github.com/francoispqt/gojay * [Encoder](#encoding) * [Decoder](#decoding) * [Stream API](#stream-api) - +* [Code Generation](https://github.com/francoispqt/gojay/tree/master/gojay) ## Decoding