An open API service indexing awesome lists of open source software.

https://github.com/arsalan0c/blotjson

Monorepo for multi-language libraries which simplify visualisation of JSON
https://github.com/arsalan0c/blotjson

api json pretty-print visualize

Last synced: about 2 months ago
JSON representation

Monorepo for multi-language libraries which simplify visualisation of JSON

Awesome Lists containing this project

README

        


blotjson

blotjson is a tool to help you make sense of API responses by displaying JSON in a browser,
directly from backend code where the JSON is received

---

## Why *blotjson*?
* There is no need to copy/paste or export your data
* Everything is done locally on your own computer
* An arbitrary number of JSON datum can be easily visualised
## Basic Usage

### Node.js
**Installation**
```
npm i --save-dev blotjson
```
**Example**
```js
const blot = require('blotjson');

blot.visualise(JSON.stringify(
{ 'bar': null, 'baz': 1.0 }
));
```

For further details on how to use blotjson on Node.js, go [here](./src/lang/nodejs/README.md)

## Acknowledgements

The design of displaying the data is in part inspired by [Swagger](https://swagger.io)