zzson Parser
A forgiving JSON parser that supports comments, unquoted keys, trailing commas, and more.
Loading WebAssembly module...
Input
Output
Parse Error
Parser Options
Examples
{
"name": "zzson",
"version": "1.1.0",
"features": ["forgiving", "fast", "rust"]
}
{
// Configuration file
name: "my-app", // Application name
port: 8080, /* Server port */
debug: true, # Enable debug mode
}
{
firstName: John,
lastName: 'Doe',
age: 30,
email: "john@example.com"
}
// Implicit object
key: "value"
another: 123
// Or implicit array
"apple", "banana", "cherry"
Input Size
0
characters
Parse Time
-
milliseconds
Output Size
0
characters