Socket
Socket
Sign inDemoInstall

react-simple-json-viewer

Package Overview
Dependencies
59
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-simple-json-viewer

A basic lightweight React component for viewing data in an expandable way.


Version published
Weekly downloads
453
decreased by-16.57%
Maintainers
1
Install size
6.49 MB
Created
Weekly downloads
 

Readme

Source

react-simple-json-viewer

A basic lightweight React (jsx) component for viewing data in an expandable way.

null screenshot

DEMO

Usage

npm install react-simple-json-viewer

Then inside some react component:

import JSONViewer from 'react-simple-json-viewer'

// Place your component as needed
<JSONViewer data={myData}/>

The data prop passed in can be any object, array, or value.

Styling

This library utilises Emotion's css function to generate top level classes for styling. If you look at index.js in /src you will see the default minimal styles applied to the container and children. To override the default styling just use the css prop when using the component. For example, to change the color of the values:

<JSONViewer data={data} css={{
  'span.rsjv-value': {
    color: 'purple'
  }
}}>

SSR

As the library depends on a recent version of emotion, SSR should work out of the box. However depending on your SSR setup, you may need to do something more complicated, in which case please refer to the Emotion SSR docs.

Credits

This library was built @wethrift by @matt-way

Keywords

FAQs

Last updated on 06 Mar 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc