Created
April 30, 2025 02:43
-
-
Save documentprocessing/80f8a7d72deefe68c70c1b632ae227ff to your computer and use it in GitHub Desktop.
Handling Large Data 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
const largeDataConfig = { | |
maxDepth: 4, // Limit initial rendering depth | |
lazyLoad: true, // Load nodes on demand | |
previewThreshold: 50 // Show preview for arrays > 50 items | |
}; | |
JsonCrack.draw('big-data-view', hugeJson, largeDataConfig); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment