json-viewer-custom-element

2.6.1 • Public • Published

json-viewer

JSON value viewer. Demo.

When to use this module

Debugging

Alternative to state debugger. In case if you want to see a value, but don't want to write decoder and presentation.

Presentation of unknown data structures

In the times of continuous delivery we often encounter unknown data structures even on production (think of rich error details object, which may contain information about the context of an error).

Features

  • standard init-update-view API
  • expand/collapse of nested values (object, array)
  • preview of expandable values
  • visual highlight of some JSON values (number, string, null, boolean)
  • custom element <json-viewer value='{ "foo": "bar" }'></json-viewer>
  • preview of object/array with values for collapsed nodes
  • display newlines characters as ↵

Upcoming features

  • configurable appearance
  • display hidden unicode characters
  • configurable pagination for long arrays
  • node operation (copy to clipboard, save as file, etc..)
  • configurable expandable view of long strings
  • configurable preview of media data

Usage

There are two ways of using this component:

  • as custom element (using web-components API)
  • as elm library

Custom element

  1. Register custom element
<script src="//unpkg.com/json-viewer-custom-element"></script>
  1. Use in your code, as html
<json-viewer value='{ "foo": "bar" }'></json-viewer>

Currently there's only one attribute supported: value which should be a valid JSON value, more attributes will be added in future releases in order to support additional feature, such as copying node to clipboard. See demo of web-component usage.

  1. Customize web component

Example styling using colors from dark theme of chrome devtools

--font-family: menlo, monospace;
--preview-background: transparent;
--key-color: #e36eec;
--string-value-color: #e93f3b;
--numeric-value-color: #9980ff;
--null-value-color: #7f7f7f;
--boolean-value-color: #9980ff;
--toggle-color: #bbb;

To replace collapse/expand button content use

--collapsed-node-bullet: "▶"
--expanded-node-bullet: "▼"

Elm library

  1. Install dependency
elm-package install 1602/json-viewer
  1. Use in your code, as elm component. This component uses standard init-update-view cycle. Check API documentation for examples of usage.

Readme

Keywords

none

Package Sidebar

Install

npm i json-viewer-custom-element

Weekly Downloads

31

Version

2.6.1

License

GNU GENERAL PUBLIC LICENSE v3

Unpacked Size

126 kB

Total Files

9

Last publish

Collaborators

  • anatoliy