TOML to JSON converter

See also JSON to TOML
Your TOML
Your JSON
1{
2  "title": "TOML Example",
3  "owner": {
4    "name": "Tom Preston-Werner",
5    "dob": "1979-05-27T15:32:00.000Z"
6  },
7  "database": {
8    "enabled": true,
9    "ports": [
10      8000,
11      8001,
12      8002
13    ],
14    "data": [
15      [
16        "delta",
17        "phi"
18      ],
19      [
20        3.14
21      ]
22    ],
23    "temp_targets": {
24      "cpu": 79.5,
25      "case": 72
26    }
27  },
28  "servers": {
29    "alpha": {
30      "ip": "10.0.0.1",
31      "role": "frontend"
32    },
33    "beta": {
34      "ip": "10.0.0.2",
35      "role": "backend"
36    }
37  }
38}

FAQ

JSON vs TOML for configuration files

What are the systems using TOML as configuration language?