Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Mapstructure | 6,849 | 11,247 | 9,878 | 7 days ago | 19 | April 20, 2022 | 70 | mit | Go | |
Go library for decoding generic map values into native Go structures and vice versa. | ||||||||||
Jansson | 2,793 | 2 | 24 days ago | 4 | September 13, 2021 | 95 | mit | C | ||
C library for encoding, decoding and manipulating JSON data | ||||||||||
Gojay | 1,991 | 29 | 270 | 2 years ago | 4 | June 11, 2019 | 47 | mit | Go | |
fastest JSON encoder/decoder with powerful stream API for Golang | ||||||||||
Unbox | 1,986 | 109 | 4 years ago | 25 | July 18, 2018 | 35 | mit | Swift | ||
[Deprecated] The easy to use Swift JSON decoder | ||||||||||
Utils | 1,720 | 4,225 | 1,357 | 20 days ago | 65 | November 24, 2021 | 17 | other | PHP | |
🛠 Lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc. | ||||||||||
Cheshire | 1,427 | 4 months ago | 49 | February 09, 2020 | 50 | mit | Clojure | |||
Clojure JSON and JSON SMILE (binary json format) encoding/decoding | ||||||||||
Dataclasses Json | 1,130 | 37 | 255 | 4 days ago | 64 | March 21, 2022 | 163 | mit | Python | |
Easily serialize Data Classes to and from JSON | ||||||||||
Decodable | 1,056 | 38 | 5 years ago | 11 | October 22, 2018 | 36 | mit | Swift | ||
[Probably deprecated] Swift 2/3 JSON unmarshalling done (more) right | ||||||||||
Encoding | 878 | 116 | 7 months ago | 62 | April 26, 2022 | 12 | mit | Go | ||
Go package containing implementations of efficient encoding, decoding, and validation APIs. | ||||||||||
Jiffy | 813 | 102 | 48 | a year ago | 18 | February 22, 2022 | 16 | other | C++ | |
JSON NIFs for Erlang |
mapstructure is a Go library for decoding generic map values to structures and vice versa, while providing helpful error handling.
This library is most useful when decoding values from some data stream (JSON,
Gob, etc.) where you don't quite know the structure of the underlying data
until you read a part of it. You can therefore read a map[string]interface{}
and use this library to decode it into the proper underlying native Go
structure.
Standard go get
:
$ go get github.com/mitchellh/mapstructure
For usage and examples see the Godoc.
The Decode
function has examples associated with it there.
Go offers fantastic standard libraries for decoding formats such as JSON. The standard method is to have a struct pre-created, and populate that struct from the bytes of the encoded format. This is great, but the problem is if you have configuration or an encoding that changes slightly depending on specific fields. For example, consider this JSON:
{
"type": "person",
"name": "Mitchell"
}
Perhaps we can't populate a specific structure without first reading
the "type" field from the JSON. We could always do two passes over the
decoding of the JSON (reading the "type" first, and the rest later).
However, it is much simpler to just decode this into a map[string]interface{}
structure, read the "type" key, then use something like this library
to decode it into the proper structure.