• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

any_tests/H21-Jun-2019-

api_tests/H21-Jun-2019-

benchmarks/H21-Jun-2019-

extension_tests/H21-Jun-2019-

extra/H21-Jun-2019-

misc_tests/H21-Jun-2019-

skip_tests/H21-Jun-2019-

type_tests/H21-Jun-2019-

value_tests/H21-Jun-2019-

.codecov.ymlH A D21-Jun-201933

.gitignoreH A D21-Jun-201942

.travis.ymlH A D21-Jun-2019159

Gopkg.lockH A D21-Jun-2019588

Gopkg.tomlH A D21-Jun-2019712

LICENSEH A D21-Jun-20191 KiB

README.mdH A D21-Jun-20192.8 KiB

adapter.goH A D21-Jun-20194.5 KiB

any.goH A D21-Jun-20197 KiB

any_array.goH A D21-Jun-20194.7 KiB

any_bool.goH A D21-Jun-20191.8 KiB

any_float.goH A D21-Jun-20191.2 KiB

any_int32.goH A D21-Jun-20191.1 KiB

any_int64.goH A D21-Jun-20191.1 KiB

any_invalid.goH A D21-Jun-20191.3 KiB

any_nil.goH A D21-Jun-2019916

any_number.goH A D21-Jun-20192.6 KiB

any_object.goH A D21-Jun-20196.8 KiB

any_str.goH A D21-Jun-20192.8 KiB

any_uint32.goH A D21-Jun-20191.1 KiB

any_uint64.goH A D21-Jun-20191.1 KiB

build.shH A D21-Jun-2019381

config.goH A D21-Jun-201910.3 KiB

example_test.goH A D21-Jun-20192.6 KiB

fuzzy_mode_convert_table.mdH A D21-Jun-2019927

go.modH A D21-Jun-2019295

go.sumH A D21-Jun-20191.3 KiB

iter.goH A D21-Jun-20197.1 KiB

iter_array.goH A D21-Jun-20191.2 KiB

iter_float.goH A D21-Jun-20197.4 KiB

iter_int.goH A D21-Jun-20198.5 KiB

iter_object.goH A D21-Jun-20195.8 KiB

iter_skip.goH A D21-Jun-20193.3 KiB

iter_skip_sloppy.goH A D21-Jun-20192.9 KiB

iter_skip_sloppy_test.goH A D21-Jun-20193.1 KiB

iter_skip_strict.goH A D21-Jun-20192 KiB

iter_str.goH A D21-Jun-20194.7 KiB

jsoniter.goH A D21-Jun-2019884

pool.goH A D21-Jun-2019956

reflect.goH A D21-Jun-20198.4 KiB

reflect_array.goH A D21-Jun-20192.6 KiB

reflect_dynamic.goH A D21-Jun-20191.4 KiB

reflect_extension.goH A D21-Jun-201914.2 KiB

reflect_json_number.goH A D21-Jun-20192.6 KiB

reflect_json_raw_message.goH A D21-Jun-20191.6 KiB

reflect_map.goH A D21-Jun-20198.9 KiB

reflect_marshaler.goH A D21-Jun-20195.6 KiB

reflect_native.goH A D21-Jun-201910.9 KiB

reflect_optional.goH A D21-Jun-20193.4 KiB

reflect_slice.goH A D21-Jun-20192.6 KiB

reflect_struct_decoder.goH A D21-Jun-201928.1 KiB

reflect_struct_encoder.goH A D21-Jun-20195.1 KiB

stream.goH A D21-Jun-20195.2 KiB

stream_float.goH A D21-Jun-20192.7 KiB

stream_int.goH A D21-Jun-20194.5 KiB

stream_str.goH A D21-Jun-20197.8 KiB

stream_test.goH A D21-Jun-20191.9 KiB

test.shH A D21-Jun-2019285

README.md

1[![Sourcegraph](https://sourcegraph.com/github.com/json-iterator/go/-/badge.svg)](https://sourcegraph.com/github.com/json-iterator/go?badge)
2[![GoDoc](http://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)](http://godoc.org/github.com/json-iterator/go)
3[![Build Status](https://travis-ci.org/json-iterator/go.svg?branch=master)](https://travis-ci.org/json-iterator/go)
4[![codecov](https://codecov.io/gh/json-iterator/go/branch/master/graph/badge.svg)](https://codecov.io/gh/json-iterator/go)
5[![rcard](https://goreportcard.com/badge/github.com/json-iterator/go)](https://goreportcard.com/report/github.com/json-iterator/go)
6[![License](http://img.shields.io/badge/license-mit-blue.svg?style=flat-square)](https://raw.githubusercontent.com/json-iterator/go/master/LICENSE)
7[![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/json-iterator/Lobby)
8
9A high-performance 100% compatible drop-in replacement of "encoding/json"
10
11You can also use thrift like JSON using [thrift-iterator](https://github.com/thrift-iterator/go)
12
13# Benchmark
14
15![benchmark](http://jsoniter.com/benchmarks/go-benchmark.png)
16
17Source code: https://github.com/json-iterator/go-benchmark/blob/master/src/github.com/json-iterator/go-benchmark/benchmark_medium_payload_test.go
18
19Raw Result (easyjson requires static code generation)
20
21| | ns/op | allocation bytes | allocation times |
22| --- | --- | --- | --- |
23| std decode | 35510 ns/op | 1960 B/op | 99 allocs/op |
24| easyjson decode | 8499 ns/op | 160 B/op | 4 allocs/op |
25| jsoniter decode | 5623 ns/op | 160 B/op | 3 allocs/op |
26| std encode | 2213 ns/op | 712 B/op | 5 allocs/op |
27| easyjson encode | 883 ns/op | 576 B/op | 3 allocs/op |
28| jsoniter encode | 837 ns/op | 384 B/op | 4 allocs/op |
29
30Always benchmark with your own workload.
31The result depends heavily on the data input.
32
33# Usage
34
35100% compatibility with standard lib
36
37Replace
38
39```go
40import "encoding/json"
41json.Marshal(&data)
42```
43
44with
45
46```go
47import "github.com/json-iterator/go"
48
49var json = jsoniter.ConfigCompatibleWithStandardLibrary
50json.Marshal(&data)
51```
52
53Replace
54
55```go
56import "encoding/json"
57json.Unmarshal(input, &data)
58```
59
60with
61
62```go
63import "github.com/json-iterator/go"
64
65var json = jsoniter.ConfigCompatibleWithStandardLibrary
66json.Unmarshal(input, &data)
67```
68
69[More documentation](http://jsoniter.com/migrate-from-go-std.html)
70
71# How to get
72
73```
74go get github.com/json-iterator/go
75```
76
77# Contribution Welcomed !
78
79Contributors
80
81* [thockin](https://github.com/thockin)
82* [mattn](https://github.com/mattn)
83* [cch123](https://github.com/cch123)
84* [Oleg Shaldybin](https://github.com/olegshaldybin)
85* [Jason Toffaletti](https://github.com/toffaletti)
86
87Report issue or pull request, or email taowen@gmail.com, or [![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/json-iterator/Lobby)
88