Convert JSON to Erlang Map format — supports nesting and lists, pure frontend
All JSON types: objects → Erlang Maps (#{key => value}), arrays → Lists, strings → binaries (<<"text">>), numbers preserved, booleans → atoms (true/false), null → atom nil.
JSON string keys are converted to Erlang atom keys, e.g., "name" → name. Keys with spaces or special characters remain as binary keys.
Yes, supports arbitrary nesting depth. Nested objects become nested Maps, nested arrays become nested Lists. Output is auto-indented.
All JSON types: objects → Erlang Maps (#{key => value}), arrays → Lists, strings → binaries (<<"text">>), numbers preserved, booleans → atoms (true/false), null → atom nil.
JSON string keys are converted to Erlang atom keys, e.g., "name" → name. Keys with spaces or special characters remain as binary keys.
Yes, supports arbitrary nesting depth. Nested objects become nested Maps, nested arrays become nested Lists. Output is auto-indented.