説明なし

Tao Wen 59e71bacc8 #36 handle anonymous 8 年 前
assert 101dfdbb2a fix 4 fields object decoding 9 年 前
require 101dfdbb2a fix 4 fields object decoding 9 年 前
LICENSE 923358c07e Initial commit 9 年 前
README.md 5310d4aa9a syntax highlight 8 年 前
feature_adapter.go 5cb0d35610 eof is not error 8 年 前
feature_any.go 53f8d370b5 fix wrap any 8 年 前
feature_any_array.go bf459b9a49 object lazy any support get all 8 年 前
feature_any_bool.go edb96991a8 add all integer types 8 年 前
feature_any_float.go edb96991a8 add all integer types 8 年 前
feature_any_int32.go edb96991a8 add all integer types 8 年 前
feature_any_int64.go edb96991a8 add all integer types 8 年 前
feature_any_invalid.go edb96991a8 add all integer types 8 年 前
feature_any_nil.go 9d1feb5431 fix tests 8 年 前
feature_any_object.go 6880076b44 fix map[string]interface{} in struct 8 年 前
feature_any_string.go edb96991a8 add all integer types 8 年 前
feature_any_uint32.go edb96991a8 add all integer types 8 年 前
feature_any_uint64.go edb96991a8 add all integer types 8 年 前
feature_iter.go 8656482625 array lazy fill and full fill 8 年 前
feature_iter_array.go 928bc4ce72 ReadArrayCB 9 年 前
feature_iter_float.go fe9fa8900e #31 support json.RawMessage 8 年 前
feature_iter_int.go da7ed7809b use hash for field dispatching 8 年 前
feature_iter_object.go e5a1e704ad #25 make fielding binding case insensitive 8 年 前
feature_iter_skip.go 7d2ae80c37 #27 support json.Unmarshaler 8 年 前
feature_iter_string.go 7e046e6aa7 simplify read string, and support null 8 年 前
feature_reflect.go a7f992f0e1 #35 fix json.Number matches string 8 年 前
feature_reflect_array.go 5488fde97f fix one field struct interface{} optimization compatibility 8 年 前
feature_reflect_map.go f6f159e108 #27 support json.Marshaler 8 年 前
feature_reflect_native.go fe9fa8900e #31 support json.RawMessage 8 年 前
feature_reflect_object.go 59e71bacc8 #36 handle anonymous 8 年 前
feature_stream.go 2922666717 fix read int 8 年 前
feature_stream_float.go 5fbe4e387d #21 #22 marshal float precisely by default 8 年 前
feature_stream_int.go 102cd8748e fix write int 9 年 前
jsoniter_adapter_test.go 69b742e73a #34 support More() and Buffered() 8 年 前
jsoniter_array_test.go fe9fa8900e #31 support json.RawMessage 8 年 前
jsoniter_base64_test.go d63a00f0bf Formated, doced. Also fixed few minor bugs. 9 年 前
jsoniter_bool_test.go 38d613acf2 bool any 8 年 前
jsoniter_customize_test.go 707ed3b091 support non empty interface 8 年 前
jsoniter_demo_test.go 59e71bacc8 #36 handle anonymous 8 年 前
jsoniter_find_end_test.go 9d1feb5431 fix tests 8 年 前
jsoniter_float_test.go 377b892102 support big float and int 8 年 前
jsoniter_int_test.go ad3a7fde32 #30 support json.Number 8 年 前
jsoniter_interface_test.go 707ed3b091 support non empty interface 8 年 前
jsoniter_io_test.go d63a00f0bf Formated, doced. Also fixed few minor bugs. 9 年 前
jsoniter_large_file_test.go d63a00f0bf Formated, doced. Also fixed few minor bugs. 9 年 前
jsoniter_map_test.go e5476f70e7 #16 fix slice of map 8 年 前
jsoniter_nested_test.go d63a00f0bf Formated, doced. Also fixed few minor bugs. 9 年 前
jsoniter_null_test.go fc44cb2d91 #26 do not enforce pointer as optional 8 年 前
jsoniter_object_test.go 9d1feb5431 fix tests 8 年 前
jsoniter_optional_test.go 1f0a0e9a2d encode optional 9 年 前
jsoniter_reflect_native_test.go 5b0609f901 support int/string encode 9 年 前
jsoniter_reflect_struct_test.go 59e71bacc8 #36 handle anonymous 8 年 前
jsoniter_reflect_test.go 5b2a731963 implement readFloat32 fast path 9 年 前
jsoniter_skip_test.go d63a00f0bf Formated, doced. Also fixed few minor bugs. 9 年 前
jsoniter_string_test.go fa16f3c75c wrap string 8 年 前

README.md

rcard

jsoniter (json-iterator) is fast and flexible JSON parser available in Java and Go

Usage

100% compatibility with standard lib

Replace

import "encoding/json"
json.Marshal(&data)

with

import "github.com/json-iterator/go"
jsoniter.Marshal(&data)

Replace

import "encoding/json"
json.Unmarshal(input, &data)

with

import "github.com/json-iterator/go"
jsoniter.Unmarshal(input, &data)

How to get

go get github.com/json-iterator/go

Contribution Welcomed !

Report issue or pull request, or email taowen@gmail.com, or Gitter chat