🔍
Desktop App
☀️
⚙️
TOML to JSON
Convert TOML content to JSON format.
TOML Input
title = "My App" version = "1.0.0" debug = false port = 8080
JSON Output
Copy
{ "title": "My App", "version": "1.0.0", "debug": false, "port": 8080 }