TOML Parser
Parse, validate, format, and convert TOML — supports round-trip to JSON via smol-toml
Mode:
{
"package": {
"name": "my-app",
"version": "1.0.0"
},
"dependencies": {
"serde": "1.0",
"tokio": {
"version": "1.0",
"features": [
"full"
]
}
},
"features": {
"default": []
},
"profile": {
"release": {
"opt-level": 3,
"debug": false
}
}
}Backed by smol-toml — a small, spec-compliant TOML 1.0 parser. Date/time values are emitted as ISO strings; nested tables become nested objects.
Related tools
{}
JSON Prettifier
Format and validate JSON data
📄
XML/HTML Formatter
Format, validate, prettify, and minify XML or HTML data
⇄
XML ↔ JSON Converter
Bidirectional XML-to-JSON and JSON-to-XML converter using the familiar @attr / _text convention; repeated tags collapse into arrays
🧭
JSONPath Query Engine
Test JSONPath expressions — supports dot/bracket access, wildcards, slices, recursive descent (..), and filter [?(...)] expressions
◇
GraphQL Formatter
Format and validate GraphQL queries, mutations, subscriptions, and fragments — preserves string literals, args, blocks, lists, and comments