DEV Community

PixelBai
PixelBai

Posted on

JSON Pretty Print: Beautiful in One Click

Make JSON Beautiful

Before

{"status":"ok","data":[{"id":1,"value":"a"},{"id":2,"value":"b"}]}
Enter fullscreen mode Exit fullscreen mode

After

{
  "status": "ok",
  "data": [{"id": 1, "value": "a"}, {"id": 2, "value": "b"}]
}
Enter fullscreen mode Exit fullscreen mode

Features

  • Syntax highlighting
  • Collapsible tree
  • Line numbers
  • One-click copy

Try XingDian JSON Pretty Print.

Top comments (0)