mholt / json-to-go

Translates JSON into a Go type in your browser instantly (original)
https://mholt.github.io/json-to-go/
MIT License
4.48k stars 473 forks source link

Is there a online tool converting go struct to json? #121

Closed dablelv closed 1 year ago

dablelv commented 1 year ago

I want to convert a go struct to json, but I can't find a good online tool. Why this tool don't support reverse conversion, i.e. coverting go struct to json?

mholt commented 1 year ago

Because you can just do json.Marshal() in Go. 🤷‍♂️ JSON isn't really strongly typed.

dablelv commented 1 year ago

Because you can just do json.Marshal() in Go. 🤷‍♂️ JSON isn't really strongly typed.

Thanks reply. I also have another question. Why I cant'f find the frontend codes in your repo mholt/json-to-go?

mholt commented 1 year ago

It's on the gh-pages branch