Make JSON Beautiful
Before
{"status":"ok","data":[{"id":1,"value":"a"},{"id":2,"value":"b"}]}
After
{
"status": "ok",
"data": [{"id": 1, "value": "a"}, {"id": 2, "value": "b"}]
}
Features
- Syntax highlighting
- Collapsible tree
- Line numbers
- One-click copy
Top comments (0)