RevealTheme logo

أداة تحويل JSON إلى YAML

حوّل JSON إلى YAML. تتخلص من الأقواس المعقوفة وعلامات الاقتباس والفواصل للحصول على ملفات إعداد أنظف.

كيفية استخدام هذه الأداة

  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.

ما هي أداة تحويل JSON إلى YAML؟

YAML من الناحية النحوية مجموعة شاملة لـ JSON: فكل ملف JSON هو YAML صالح، لكن العكس ليس صحيحًا. تحويل JSON إلى YAML هو في الأساس عملية تجميلية: استبدال الأقواس المعقوفة بالإزاحة (sangría)، وإزالة علامات الاقتباس من المفاتيح البسيطة، واستبدال الفواصل بأسطر جديدة. مفيد لترجمة استجابات واجهات برمجة التطبيقات (API) إلى ملفات إعداد قابلة للتحرير من قِبل البشر.

حالات الاستخدام الشائعة

  • 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.

الأسئلة الشائعة

هل سيتحول YAML مجددًا إلى JSON مطابق؟
بالنسبة للبيانات البسيطة، نعم. توضع السلاسل التي تحتوي على أحرف خاصة بين علامتي اقتباس للحفاظ عليها.

أدوات ذات صلة