Convert TOML configuration files to JSON instantly in your browser. Supports all TOML types including arrays of tables. Swap to JSON→TOML in one click. Client-side.
The TOML to JSON converter parses TOML configuration files using smol-toml and outputs formatted, indented JSON. All TOML 1.0 types are supported: strings, integers, floats, booleans, datetimes, arrays, inline tables, array of tables, and multi-line strings. Both editors stay live — edit TOML and JSON updates, or edit JSON and TOML regenerates. Swap direction with one click.
QAre TOML datetimes preserved?
TOML datetimes are converted to ISO 8601 strings in JSON output, as JSON has no native datetime type.
QWhat is an array of tables in TOML?
TOML's `[[section]]` syntax defines an array of objects. Each `[[section]]` block appends an entry. The JSON output will have an array of objects for that key.
QIs my data sent to a server?
No. All conversion runs in a Web Worker inside your browser. Nothing is transmitted to any server.