Format JSON using local commands
JavaScript object notation (JSON) is a common human-readable data format. When working with APIs, may need to make it more compact (minified) to save space, or format it to be more readable. There are different ways to switch between minified or pretty-printed JSON, including several good services online. But do you really want to upload a JSON document to a web server for formatting? In addition to the potential for an accidental security breach, feels wasteful to be transmitting a document over the internet to be formatted on someone else’s computer....