mirror of
https://github.com/json-iterator/go.git
synced 2025-01-26 18:58:43 +02:00
46 lines
892 B
Markdown
46 lines
892 B
Markdown
[![rcard](https://goreportcard.com/badge/github.com/json-iterator/go)](https://goreportcard.com/report/github.com/json-iterator/go)
|
|
|
|
jsoniter (json-iterator) is fast and flexible JSON parser available in [Java](https://github.com/json-iterator/java) and [Go](https://github.com/json-iterator/go)
|
|
|
|
# Usage
|
|
|
|
100% compatibility with standard lib
|
|
|
|
Replace
|
|
|
|
```go
|
|
import "encoding/json"
|
|
json.Marshal(&data)
|
|
```
|
|
|
|
with
|
|
|
|
```go
|
|
import "github.com/json-iterator/go"
|
|
jsoniter.Marshal(&data)
|
|
```
|
|
|
|
Replace
|
|
|
|
```go
|
|
import "encoding/json"
|
|
json.Unmarshal(input, &data)
|
|
```
|
|
|
|
with
|
|
|
|
```go
|
|
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](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/json-iterator/Lobby)
|