Measure JSON size, depth, node counts, and primitive type distribution.
The frame below runs the same code as this page, in the reader's own browser. Nothing is sent to us, and nothing is sent to you.
Pick a dark background and the text and panels follow it, so the frame stays readable on a dark page.
The document is parsed and walked recursively to count objects, arrays, keys, values, maximum depth, and primitive types. Compact and formatted serialized lengths show transport size versus readable size.
{
"users": [
{"id": 1, "name": "Alice", "active": true},
{"id": 2, "name": "Bob", "active": false}
],
"total": 2
}
Path Size --------------- ---- users 76 users[0].name 7 users[1].name 5 users[1].active 5 users[0].active 4
Payload budgets, cache planning, and deep-response debugging use these measurements.