/blotjson

Monorepo for multi-language libraries which simplify visualisation of JSON

Primary LanguageJavaScriptMIT LicenseMIT

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

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

Acknowledgements

The design of displaying the data is in part inspired by Swagger