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
- Host: GitHub
- URL: https://github.com/arsalan0c/blotjson
- Owner: arsalan0c
- License: mit
- Created: 2020-05-09T16:19:06.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T19:50:43.000Z (over 2 years ago)
- Last Synced: 2025-02-13T11:50:15.061Z (4 months ago)
- Topics: api, json, pretty-print, visualize
- Language: JavaScript
- Homepage:
- Size: 19.6 MB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)