1.0.2 • Published 5 years ago

svrx-plugin-json-viewer v1.0.2

Weekly downloads
1
License
MIT
Repository
-
Last release
5 years ago

svrx-plugin-json-viewer

svrx npm

The svrx plugin for json-viewer

npm.io

This plugin will convert the JSON response to a json viewer's page, but it won't affect the response via ajax or fetch.

Usage

Please make sure that you have installed svrx already.

Via CLI

svrx -p json-viewer

Via API

const svrx = require('@svrx/svrx');

svrx({ plugins: [ 'json-viewer' ] }).start();

Options

{
    type: {
      description: 'Enable data type labels prefix values',
      default: false,
      type: 'boolean'
    },
    collapsed: {
      default: false,
      description: 'When set to true, all nodes will be collapsed by default. Use an integer value to collapse at a particular depth.',
      anyOf: [
        {
          type: 'number',
        },
        {
          type: 'boolean',
        },
      ],
    },
    theme: {
      type: 'string',
      description: 'RJV supports base-16 themes.',
    },
}

License

MIT