ToolHub
中文
Dark
GitHub
返回首页
/
转换器
/
TOML ↔ JSON
加载中...
TOML → JSON
JSON → TOML
输入 TOML
[database] host = "localhost" port = 5432 name = "toolhub" [server] host = "0.0.0.0" port = 8080 debug = true
输出 JSON
复制
{ "database": { "host": "localhost", "port": 5432, "name": "toolhub" }, "server": { "host": "0.0.0.0", "port": 8080, "debug": true } }