Created
April 30, 2025 02:28
-
-
Save documentprocessing/52b3253a6118d0646c3900ecb24c6f19 to your computer and use it in GitHub Desktop.
Basic JSON Visualization with JSON Crack
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { JsonCrack } from 'jsoncrack'; | |
const jsonData = { | |
"user": { | |
"name": "John Doe", | |
"age": 30, | |
"address": { | |
"street": "123 Main St", | |
"city": "Anytown" | |
} | |
} | |
}; | |
JsonCrack.draw('visualization-container', jsonData); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment