Quantcast
Channel: Best way to format large JSON file? (~30 mb) - Stack Overflow
Browsing all 7 articles
Browse latest View live

Answer by SaiAditya45 for Best way to format large JSON file? (~30 mb)

I was also looking for a similar task and I just used Postman beautify to format a 3 MB JSON file and it worked.

View Article



Answer by KRG for Best way to format large JSON file? (~30 mb)

You can use Notepad++ (https://notepad-plus-plus.org/downloads/) for formatting large JSON files (tested in Windows).Install Notepad++Go to Plugins -> Plugins Admin -> Install the 'Json Viewer'...

View Article

Answer by api_nest for Best way to format large JSON file? (~30 mb)

Background-- I was trying to format a huge json file ~89mb on VS Code using the command (Alt+Shift+F) but the usuals, it crashed. I used jq to format my file and store it in another file.A windows 11...

View Article

Answer by nicolas2008 for Best way to format large JSON file? (~30 mb)

jsonpps is the only one worked for me (https://github.com/bazaarvoice/jsonpps).It doesn't load everything to RAM unlike jq, jsonpp and others that I tried.Some useful tips regarding installation and...

View Article

Answer by jmng for Best way to format large JSON file? (~30 mb)

jq can format or beautify a ~100MB JSON file in a few seconds:jq '.' myLargeUnformattedFile.json > myLargeBeautifiedFile.jsonThe command above will beautify a single-line ~120MB file in ~10 seconds,...

View Article


Answer by pstadler for Best way to format large JSON file? (~30 mb)

With python >= 2.6 you can do the following:For Mac/Linux users:cat ugly.json | python -m json.tool > pretty.jsonFor Windows users (thanks to the comment from dnk.nitro):type ugly.json | python...

View Article

Best way to format large JSON file? (~30 mb)

I need to format a large JSON file for readability, but every resource I've found (mostly online) doesn't deal with data say, above 1-2 MB. I need to format about 30 MB. Is there any way to do this, or...

View Article
Browsing all 7 articles
Browse latest View live




Latest Images