RevealTheme logo

JSON-naar-YAML-converter

Zet JSON om naar YAML. Verwijdert accolades, aanhalingstekens en komma's voor overzichtelijkere configuratiebestanden.

Hoe u deze tool gebruikt

  1. 1

    Paste or type your JSON into the text box.

  2. 2

    The converter parses it with JSON.parse and renders YAML below as you type.

  3. 3

    If the JSON is malformed, a red parser error appears instead of output — fix the JSON and the YAML updates.

  4. 4

    Select the YAML in the output block and copy it into your config file.

Wat is de JSON-naar-YAML-converter?

YAML is syntactisch een superset van JSON: elk JSON-bestand is geldige YAML, maar omgekeerd geldt dat niet. JSON naar YAML omzetten is vooral esthetisch: de accolades vervangen door inspringing, de aanhalingstekens van eenvoudige sleutels verwijderen en de komma's vervangen door regeleinden. Handig om API-respons om te zetten naar configuratiebestanden die door mensen te bewerken zijn.

Veelvoorkomende toepassingen

  • Turning a JSON API response into a YAML snippet you can paste into a Kubernetes or Docker Compose file.

  • Rewriting a package.json fragment or settings blob as YAML to read it more easily during review.

  • Drafting a GitHub Actions or GitLab CI workflow when you have the config as JSON but the pipeline expects YAML.

  • Converting a JSON fixture into YAML for an Ansible playbook or a Helm values file.

  • Quickly checking how a nested JSON structure looks once the braces and commas are stripped away.

  • Producing readable YAML examples for documentation from JSON you already have.

Veelgestelde vragen

Wordt de YAML weer omgezet naar identieke JSON?
Voor eenvoudige gegevens wel. Tekenreeksen die speciale tekens bevatten, worden tussen aanhalingstekens geplaatst om ze te behouden.

Gerelateerde tools