Comment on How To Parse JSON Data To A Human Readable Format

GreenKnight23@lemmy.world ⁨5⁩ ⁨days⁩ ago

lots of ways to do it, where will it be displayed? if it’s in a console, jq would more than suffice.

if you want it to be processed heavily and added to an HTML document, probably something like a mix of jq and envsubst. you could forego all that and just use sed to inject the json into HTML then have JavaScript parse it out for you browser side.

if you want to store it in a database why not just store the whole json?

your requirements aren’t very clear on what you want this data for or how it will be used. without that there’s just too many variable solutions.

can you parse json? sure! what for/how will it be used? not sure.

hope this helps.

source
Sort:hotnewtop