UtilitySansar
Données

YAML to JSON Converter

Paste YAML and get structured JSON back. Handy for debugging CI configs, feeding YAML into a tool that only speaks JSON, or just inspecting what your config actually resolves to.

Résumé de l'outil

Cet outil accepte une entrée structurée et renvoie une sortie déterministe dans le navigateur, sans envoi au serveur.

Nom de l'outil
YAML to JSON Converter
Intention d'entrée
Fournissez le contenu source à transformer, valider ou analyser.
Intention de sortie
Recevez une sortie normalisée prête à être copiée, réutilisée ou déboguée.
Entrée d'exemple
name: api replicas: 3 env: - prod - staging
Sortie d'exemple
{ "name": "api", "replicas": 3, "env": [ "prod", "staging" ] }

Paste YAML above and click Convert to JSON.

Introduction à l'outil

Paste YAML and get structured JSON back. Handy for debugging CI configs, feeding YAML into a tool that only speaks JSON, or just inspecting what your config actually resolves to.

Vue d'ensemble de l'outil

The converter tokenizes your YAML line by line, tracks indentation to build the hierarchy, and resolves scalars to their JSON-native types (numbers, booleans, null, strings). Both block style (indented) and flow style ([a, b] / {k: v}) mappings and sequences are supported, along with comments, single- and double-quoted strings, and the usual `null`/`~`/`true`/`false` aliases.

Cas d'usage

  • Inspect a Kubernetes manifest as JSON
  • Pipe a YAML config into jq or a JSON Schema validator
  • Convert Docker Compose files for tools that require JSON
  • Debug why a CI config is being parsed a certain way

Exemples d'entrée/sortie

Intention d'entrée
name: api
replicas: 3
env:
  - prod
  - staging
Intention de sortie
{
  "name": "api",
  "replicas": 3,
  "env": [
    "prod",
    "staging"
  ]
}
Comments are stripped and flow-style arrays are supported.
Intention d'entrée
# deployment config
image: nginx:1.25
ports: [80, 443]
labels:
  app: web
  tier: frontend
Intention de sortie
{
  "image": "nginx:1.25",
  "ports": [80, 443],
  "labels": {
    "app": "web",
    "tier": "frontend"
  }
}
Scalars resolve to their JSON-native types.
Intention d'entrée
greeting: 'hello world'
count: 42
enabled: true
nothing: null
Intention de sortie
{
  "greeting": "hello world",
  "count": 42,
  "enabled": true,
  "nothing": null
}

Questions fréquentes

Is this YAML to JSON converter free?+
Yes. It runs entirely in your browser, with no sign-up, no file-size gates, and no ads inside the tool.
What subset of YAML is supported?+
Block and flow mappings/sequences, plain and quoted scalars, comments, and null/boolean/number resolution. Anchors (&), aliases (*), tags (!!type), and multi-line scalars (|, >) are not yet supported.
Will it coerce numeric strings like "007"?+
Leading-zero strings are kept as strings. Only values that match a strict integer or float pattern are converted to numbers.
Is my data sent to a server?+
No. Parsing and conversion happen entirely in your browser — the page never talks to a backend.
Can I convert Kubernetes, Docker Compose, or GitHub Actions YAML?+
Yes. Those configs use the block/flow features this converter supports. Paste the file and the resulting JSON is ready for jq, JSON Schema validators, or direct import into code.

Explorer plus d'outils

Découvrez des utilitaires liés dans la catégorie Données ci-dessous.

Parcourir tous les Données

Outils liés

Utilitaires sélectionnés à la main qui pourraient vous être utiles