Tried it on a 9.9MB json file I have. Seemed to handle the size fine, but the output was nothing like what I would want. I made a smaller version of what I uploaded in the below pastebin and the output.
The data is TLD data so it should have at least given me the "com", "net", "..." part
I already knew complex types / nested objects would not work. but what makes json stronger than csv is that you can handle more complex data types and most people will use json that way too. Otherwise json would just be a less bloated xml, which is a less bloated csv. lol
The data is TLD data so it should have at least given me the "com", "net", "..." part
Input
https://pastebin.com/QAWeu8Xt
Output
An explanation of _how_ it does the conversion would be nice when choosing a tool like this. As the "just works" didn't seem to work.[
]And I got:
name,carb,cholesterol,fiber,minerals,protein,sodium,vitamins
Avocado Dip,2,5,0,"{""ca"":0,""fe"":0}",1,210,"{""a"":0,""c"":0}"
Which is not what I would expect.
becomes
data,something [object Object],yay
I already knew complex types / nested objects would not work. but what makes json stronger than csv is that you can handle more complex data types and most people will use json that way too. Otherwise json would just be a less bloated xml, which is a less bloated csv. lol