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