simple-json-viewer

A simple web component to display json data

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
simple-json-viewer
100.0.34 months ago6 years agoMinified + gzip package size for simple-json-viewer in KB

Readme

simple-json-viewer
A simple web component to display json data
Usage
Plain HTML ```html ``` With Javascript ```js import "https://unpkg.com/simple-json-viewer"; const jv = document.createElement("json-viewer"); // data can be any javascript variable that can stringify to json jv.data = { some: "json", array: 0, true, "2" }; document.body.append(jv); // can also expand all or collapse all jv.expandAll(); jv.collapseAll(); ```