Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save documentprocessing/52b3253a6118d0646c3900ecb24c6f19 to your computer and use it in GitHub Desktop.
Save documentprocessing/52b3253a6118d0646c3900ecb24c6f19 to your computer and use it in GitHub Desktop.
Basic JSON Visualization with JSON Crack
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