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

..03-May-2022-

go-1.1.7/H21-Jun-2019-

.codecov.ymlH A D06-Oct-202033

.gitignoreH A D06-Oct-202042

.travis.ymlH A D06-Oct-2020159

Gopkg.lockH A D06-Oct-2020588

Gopkg.tomlH A D06-Oct-2020712

LICENSEH A D06-Oct-20201 KiB

README.mdH A D06-Oct-20202.8 KiB

adapter.goH A D06-Oct-20204.5 KiB

any.goH A D06-Oct-20207 KiB

any_array.goH A D06-Oct-20204.7 KiB

any_bool.goH A D06-Oct-20201.8 KiB

any_float.goH A D06-Oct-20201.2 KiB

any_int32.goH A D06-Oct-20201.1 KiB

any_int64.goH A D06-Oct-20201.1 KiB

any_invalid.goH A D06-Oct-20201.3 KiB

any_nil.goH A D06-Oct-2020916

any_number.goH A D06-Oct-20202.6 KiB

any_object.goH A D06-Oct-20206.8 KiB

any_str.goH A D06-Oct-20202.8 KiB

any_uint32.goH A D06-Oct-20201.1 KiB

any_uint64.goH A D06-Oct-20201.1 KiB

build.shH A D06-Oct-2020381

config.goH A D06-Oct-202010.3 KiB

fuzzy_mode_convert_table.mdH A D06-Oct-2020927

go.modH A D06-Oct-2020295

go.sumH A D06-Oct-20201.3 KiB

iter.goH A D06-Oct-20207.1 KiB

iter_array.goH A D06-Oct-20201.2 KiB

iter_float.goH A D06-Oct-20207.4 KiB

iter_int.goH A D06-Oct-20208.5 KiB

iter_object.goH A D06-Oct-20205.8 KiB

iter_skip.goH A D06-Oct-20203.3 KiB

iter_skip_sloppy.goH A D06-Oct-20202.9 KiB

iter_skip_strict.goH A D06-Oct-20202 KiB

iter_str.goH A D06-Oct-20204.7 KiB

jsoniter.goH A D06-Oct-2020884

pool.goH A D06-Oct-2020956

reflect.goH A D06-Oct-20208.4 KiB

reflect_array.goH A D06-Oct-20202.6 KiB

reflect_dynamic.goH A D06-Oct-20201.4 KiB

reflect_extension.goH A D06-Oct-202014.2 KiB

reflect_json_number.goH A D06-Oct-20202.6 KiB

reflect_json_raw_message.goH A D06-Oct-20201.6 KiB

reflect_map.goH A D06-Oct-20208.9 KiB

reflect_marshaler.goH A D06-Oct-20205.6 KiB

reflect_native.goH A D06-Oct-202010.9 KiB

reflect_optional.goH A D06-Oct-20203.4 KiB

reflect_slice.goH A D06-Oct-20202.6 KiB

reflect_struct_decoder.goH A D06-Oct-202028.1 KiB

reflect_struct_encoder.goH A D06-Oct-20205.1 KiB

stream.goH A D06-Oct-20205.2 KiB

stream_float.goH A D06-Oct-20202.7 KiB

stream_int.goH A D06-Oct-20204.5 KiB

stream_str.goH A D06-Oct-20207.8 KiB

test.shH A D06-Oct-2020285

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