📋 JSON / YAML Converter

Convert and format data structures

JSON (Formatted)
{
  "name": "John Doe",
  "age": 30,
  "email": "john@example.com",
  "skills": [
    "JavaScript",
    "React",
    "Node.js"
  ],
  "address": {
    "city": "New York",
    "country": "USA"
  }
}
JSON (Minified)
{"name":"John Doe","age":30,"email":"john@example.com","skills":["JavaScript","React","Node.js"],"address":{"city":"New York","country":"USA"}}
YAML
name: John Doe
age: 30
email: john@example.com
skills:
  - - JavaScript
  - React
  - Node.js
address:
  city: New York
  country: USA