go-cmp
JSON-to-Go
go-cmp | JSON-to-Go | |
---|---|---|
7 | 64 | |
4,175 | 4,480 | |
0.8% | - | |
3.7 | 7.0 | |
9 months ago | 2 months ago | |
Go | JavaScript | |
BSD 3-clause "New" or "Revised" License | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
go-cmp
-
Visualizing Diffs The Myers difference algorithm
This made me think of a couple other interesting things:
1. you can change which algorithm is used in git diff as multiple are supported
https://luppeng.wordpress.com/2020/10/10/when-to-use-each-of...
2. Google has an edit graph implementation in Go in the cmp package
https://github.com/google/go-cmp/blob/master/cmp/internal/di...
-
How do you do DB preparation in e2e tests?
Assertion libraries that people seem to love: - testify (my favorite) - go-cmp is a more barebones library - gotest.tools -- I have never used this but some swear by it
-
alecthomas/assert: A minimalist type-safe drop-in replacement for testify/require
it uses https://github.com/google/go-cmp instead of reflect.DeepEqual
-
What annoys you about Go?
When I use functional arguments, I either prefix all of the options with the same prefix or put them in a dedicated package (like cmpopts) to help the IDE.
-
Migrating from PHP to Go
Checking for equality in tests: https://github.com/google/go-cmp
-
What are your favorite packages to use?
oklog/ulid to generate IDs. coreos/go-oidc for validating JWTs I get from auth. google/go-cmp for comparing structs in tests (unless the project is already using Testify). spf13/pflag because life's too short for Go's flag handling. getkin/kin-openapi for validating reqests/responses against my OpenAPI spec (in tests).
-
Go Package for Equality: github.com/google/go-cmp
One thing to keep in mind about reflect.DeepEqual is because of the way it is implemented you could get positive results when the values are not actually the same, see this comment for reference.
JSON-to-Go
-
JSON to Go Struct Converter
That site likely uses Matt's lib for that functionality: https://github.com/mholt/json-to-go
-
Some annoying moments in Golang
https://mholt.github.io/json-to-go/ is a nice tool for generating a struct definition to fit some sample JSON.
-
Need a pointer on how I can unmarshal this json
json-to-go is your friend.
-
Ask HN: What are some Golang tools you can't live without?
JSON to struct. I use this about 100 times a day, no joke.
https://mholt.github.io/json-to-go/
-
convert interface{} to []interface{}
Do your best to get static types on everything. Play a game with yourself where interface{} is banned and try to do your work. One of the most common sources of such loosely-typed values in JSON, so I'll point out this automatic struct generator for instance. If you have questions about a specific place you don't see how to avoid interface, feel free to ask. Every once in a while I do have to reach for something like this, but it should be rare.
-
how to efficiently create structs to match the json response
But given we know ChatGPT can't accurately generate structs from even moderately complex json objects why bother doing all of that legwork of verifying and chiding chatgpt, when you can just drop it into a tool like https://mholt.github.io/json-to-go/ and get a correct struct in a fraction of the time?
- How to parse a Kubernetes YAML in Go?
- Is there a library or tool I can use to avoid manually setting json keys i.e. ‘json:”name”’ next to fields in structs?
-
Do we have any vscode plugin to convert json to struct in Go?
I use https://marketplace.visualstudio.com/items?itemName=maracko.json-to-go, which is an extension version of https://mholt.github.io/json-to-go/
-
Need help with getting the grandchild in nested JSON
I think using struct in such cases is almost always the right approach. There are tools which generates go structs from json this.
What are some alternatives?
Testify - A toolkit with common assertions and mocks that plays nicely with the standard library
go-sanitize - :bathtub: Golang library of simple to use sanitation functions
ginkgo - A Modern Testing Framework for Go
Golang-PDF-to-Image-Converter - This project will help you to convert PDF file to IMAGE using golang.
go-testdeep - Extremely flexible golang deep comparison, extends the go testing package, tests HTTP APIs and provides tests suite
Crypt - Crypt implementation in pure Go
godog - Cucumber for golang
gowsdl - WSDL2Go code generation as well as its SOAP proxy
assert - A simple assertion library using Go generics
golang-ifood-sdk - Golang Ifood API SDK
GoConvey - Go testing in the browser. Integrates with `go test`. Write behavioral tests in Go.
juicefs - JuiceFS is a distributed POSIX file system built on top of Redis and S3.