DEV Community

Cover image for 6 JSON Tools to Improve Your Productivity
Vishnu Chilamakuru
Vishnu Chilamakuru

Posted on • Originally published at vishnuch.tech

6 JSON Tools to Improve Your Productivity

JSON is a data format with a number of data types such as strings, booleans, lists, numbers, objects, etc... It is one of the popular, easiest, and lightweight and formats used for interaction between services. In this blog post, I will list down 10 JSON tools that help to improve your parse, format, and visualize JSON in a better and easier way.

1. JSON Formatter

JsonFormatter helps to

  • Format/ Beautify JSON
  • Validate JSON
  • Minify JSON
  • Convert JSON to XML, YAML, CSV

json-formatter-sample.png

2. JSONLint

JSONLint is a validator and reformatter for JSON. We can copy and paste, or we can also directly type or input a URL in the editor and let JSONLint validate our messy JSON code.

json-lint-sample.png

3. JSONView Chrome Plugin

JSONView is a Chrome Plugin that offers features of JSON support, Syntax highlighting, Collapsible trees, with indent guides, Clickable URLs, Toggle between raw and parsed JSON.

jsonview-sample.png

4. JSON to POJO

JSON2CSHARP is another cool online tool that helps to convert JSON to C# or Java Classes. This tool pretty much saves time for you in generating classes to map and parse JSON fields.

json-to-java-pojo.png

5. JSON to POJO In any Programming Language

Quicktype is another great online tool that helps to convert JSON to classes/structs in any one of the following programming languages. It supports

  • Go
  • Java
  • Python
  • Ruby
  • Swift
  • Objective-C and many more...

json-to-golang-struct.png

6. JSON Pretty Printer

JSON Pretty Printer utility prints JSON data in a legible, indented format. It provides the most benefit to people who are used to the command line. This tool is pretty useful for developers building or consuming JSON-based APIs.

curl http://api.plos.org/search\?q\=title:%22Drosophila%22%20and%20body:%22RNA%22\&fl\=id\&start\=1\&rows\=3 | json_pp

Enter fullscreen mode Exit fullscreen mode

Response Looks like

{
   "response" : {
      "numFound" : 1400,
      "docs" : [
         {
            "id" : "10.1371/journal.pone.0188133"
         },
         {
            "id" : "10.1371/journal.pbio.1000320"
         },
         {
            "id" : "10.1371/journal.pbio.0000060"
         }
      ],
      "start" : 1
   }
}
Enter fullscreen mode Exit fullscreen mode

Hope you like the article.


Thank you for reading

Hope you find these resources useful. If you like what you read and want to see more about system design, microservices, and other technology-related stuff... You can follow me on

Top comments (4)

Collapse
 
saheb24027824 profile image
Uifoxes

Hi Vishnu
Here is one more JSON tool which supports loading JSON form get API , load json file from local system , Validation check , json formatting like Beautify minify , and many more onlinejsontool.com/json-editor

Collapse
 
sourabh86 profile image
Sourabh Soni

Hi Vishnu, nice article!
Have you tried jsontoolbox.com for formatting JSON? It has many nifty tricks up its sleeve. For example, you can format/minify multiple JSON on the same page, lets you copy a child in a single click, has a separate button to copy minified JSON. Also, it is a PWA so I keep it installed on my laptop for quick access!

Collapse
 
bugblitz98 profile image
Bug Blitz • Edited

Hey, I think I know what you want with your JSON, there is a JSON tool I can suggest,
This is one of the light weight tool without any ads and it is absolutely free. You can go for it. jsonviewer.tools

Collapse
 
cerchie profile image
Lucia Cerchie • Edited

Nice compilation! I'd also check out json2sdl.com/ for converting a JSON response to a GraphQL schema.