json-viewer-js

1.0.8 • Public • Published

JSON Viewer

One pretty json viewer by javascript

Home page: json-viewer-js

Example

import JsonViewer from './jsonViewer';

const testJson = `{
  "example1": [
      {
          "name": "test01",
          "age": 18,
          "gender": 0,
          "student": true,
          "children": null
      },
      {
          "name": "test02",
          "age": 19,
          "gender": 1,
          "student": true,
          "children": null
      }
  ],
  "example2": {
      "friuts": ["apple", "grape", "jujube", "pear"],
      "transport": ["taxi", "bus", "metro", "plane", "train"]
  }
}`

new JsonViewer({
    container: document.body, 
    data: testJson, 
    theme: 'light', 
    expand: false
});

Output Example

Light theme

Dark theme

API Reference

Name Type Desc Default Required
container DOM Object DOM element null true
data String Json data for render '{}' true
theme String Config for different theme(light or dark) light false
expand Boolean Config for if expand when loaded false false

End

If you like it, please give me a star, thanks!

Powered for: My JSON Editor

Readme

Keywords

Package Sidebar

Install

npm i json-viewer-js

Weekly Downloads

697

Version

1.0.8

License

MIT

Unpacked Size

25.2 kB

Total Files

9

Last publish

Collaborators

  • renhongl