react-json-view vs react-json-tree vs react-json-pretty vs react-json-editor-ajrm
React JSON Visualization Libraries Comparison
1 Year
react-json-viewreact-json-treereact-json-prettyreact-json-editor-ajrmSimilar Packages:
What's React JSON Visualization Libraries?

These libraries are designed to help developers visualize and manipulate JSON data in React applications. They provide various functionalities ranging from editing JSON structures to displaying them in a user-friendly format. Each library has its unique features and use cases, making them suitable for different scenarios in web development.

Package Weekly Downloads Trend
Github Stars Ranking
Stat Detail
Package
Downloads
Stars
Size
Issues
Publish
License
react-json-view631,4613,524-1804 years agoMIT
react-json-tree408,86614,12963.6 kB202a year agoMIT
react-json-pretty100,019158-75 years agoMIT
react-json-editor-ajrm65,855358350 kB12 years agoMIT
Feature Comparison: react-json-view vs react-json-tree vs react-json-pretty vs react-json-editor-ajrm

Editing Capabilities

  • react-json-view:

    react-json-view allows for inline editing of JSON data, providing a balance between viewing and editing. Users can modify values directly in the tree structure, making it versatile for applications needing both functionalities.

  • react-json-tree:

    react-json-tree is primarily a viewer and does not support editing JSON data. It excels in visualizing data hierarchically, making it easier to understand complex JSON structures.

  • react-json-pretty:

    react-json-pretty does not offer editing capabilities; it is solely focused on displaying JSON data in a formatted manner. It is ideal for scenarios where data is presented but not modified.

  • react-json-editor-ajrm:

    react-json-editor-ajrm provides a full-fledged JSON editing experience, allowing users to modify JSON data through a structured interface. It supports validation and error highlighting, making it suitable for applications where user input is necessary.

Visual Representation

  • react-json-view:

    react-json-view combines a clean tree structure with the ability to collapse and expand nodes, providing a clear and interactive way to explore JSON data while allowing for inline edits.

  • react-json-tree:

    react-json-tree offers a collapsible tree structure that visually represents JSON data hierarchically, allowing users to navigate through nested objects easily, which is great for understanding complex data relationships.

  • react-json-pretty:

    react-json-pretty emphasizes aesthetics, providing a colorful and formatted view of JSON data that enhances readability, making it suitable for presentations.

  • react-json-editor-ajrm:

    react-json-editor-ajrm presents JSON data in a structured form, resembling a form interface, which may not be as visually appealing as tree or pretty formats but is functional for editing.

Customization

  • react-json-view:

    react-json-view is highly customizable, allowing developers to modify styles, themes, and even the behavior of the viewer, making it suitable for a wide range of applications.

  • react-json-tree:

    react-json-tree provides customization options for styling the tree nodes, allowing developers to change colors and fonts, making it adaptable to different application themes.

  • react-json-pretty:

    react-json-pretty offers limited customization options, focusing on predefined styles for displaying JSON data, which may not suit all design needs.

  • react-json-editor-ajrm:

    react-json-editor-ajrm allows for some customization in terms of validation rules and error messages, but its primary focus is on functionality rather than extensive styling options.

Performance

  • react-json-view:

    react-json-view balances performance with functionality, handling moderate-sized JSON data efficiently while providing interactive features.

  • react-json-tree:

    react-json-tree is efficient in rendering hierarchical data and performs well with nested structures, making it suitable for complex JSON visualizations.

  • react-json-pretty:

    react-json-pretty is lightweight and performs well with smaller JSON datasets, but may struggle with very large datasets due to its focus on visual formatting.

  • react-json-editor-ajrm:

    react-json-editor-ajrm is optimized for performance during editing, but complex JSON structures may still impact rendering speed due to the form-like interface.

Use Cases

  • react-json-view:

    Suitable for applications needing both viewing and editing capabilities, such as admin panels or settings management.

  • react-json-tree:

    Great for applications that require a clear hierarchical view of JSON data, such as data explorers or debugging tools.

  • react-json-pretty:

    Ideal for displaying static JSON data in a visually appealing way, such as API response viewers or documentation.

  • react-json-editor-ajrm:

    Best used in applications where users need to input or modify JSON data, such as configuration editors or data entry forms.

How to Choose: react-json-view vs react-json-tree vs react-json-pretty vs react-json-editor-ajrm
  • react-json-view:

    Use react-json-view when you need a versatile component that supports both viewing and editing of JSON data. It offers features like copying to clipboard, collapsing nodes, and customizable styling, making it suitable for applications that require a comprehensive JSON viewer and editor.

  • react-json-tree:

    Opt for react-json-tree if you want a tree view representation of JSON data. This library is excellent for applications that require a hierarchical view of JSON structures, allowing users to expand and collapse nodes for better navigation and understanding of complex data.

  • react-json-pretty:

    Select react-json-pretty for a lightweight solution focused on displaying JSON data in a visually appealing format. It's best suited for applications where you need to present JSON data without the need for editing capabilities, emphasizing readability and aesthetics.

  • react-json-editor-ajrm:

    Choose react-json-editor-ajrm if you need a robust JSON editor that allows users to edit JSON data directly within a form-like interface, with support for validation and error handling. This package is ideal for applications that require user input and manipulation of JSON data.

README for react-json-view

alt text

npm npm Build Status Coverage Status

react-json-view

RJV is a React component for displaying and editing javascript arrays and JSON objects.

This component provides a responsive interface for displaying arrays or JSON in a web browser. NPM offers a distribution of the source that's transpiled to ES5; so you can include this component with any web-based javascript application.

Check out the Interactive Demo

Implementation Example

// import the react-json-view component
import ReactJson from 'react-json-view'

// use the component in your app!
<ReactJson src={my_json_object} />

Output Examples

Default Theme

alt text

Hopscotch Theme, with Triangle Icons:

alt text

Installation Instructions

Install this component with NPM.

npm install --save react-json-view

Or add to your package.json config file:

"dependencies": {
    "react-json-view": "latest"
}

Props

Name|Type|Default|Description |:---|:---|:---|:--- src|JSON Object|None|This property contains your input JSON name|string or false|"root"|Contains the name of your root node. Use null or false for no name. theme|string|"rjv-default"|RJV supports base-16 themes. Check out the list of supported themes in the demo. A custom "rjv-default" theme applies by default. style|object|{}|Style attributes for react-json-view container. Explicit style attributes will override attributes provided by a theme. iconStyle|string|"circle"| Style of expand/collapse icons. Accepted values are "circle", triangle" or "square". indentWidth|integer|4|Set the indent-width for nested objects collapsed|boolean or integer|false|When set to true, all nodes will be collapsed by default. Use an integer value to collapse at a particular depth. collapseStringsAfterLength|integer|false|When an integer value is assigned, strings will be cut off at that length. Collapsed strings are followed by an ellipsis. String content can be expanded and collapsed by clicking on the string value. shouldCollapse|(field)=>{}|false|Callback function to provide control over what objects and arrays should be collapsed by default. An object is passed to the callback containing name, src, type ("array" or "object") and namespace. groupArraysAfterLength|integer|100|When an integer value is assigned, arrays will be displayed in groups by count of the value. Groups are displayed with bracket notation and can be expanded and collapsed by clicking on the brackets. enableClipboard|boolean or (copy)=>{}|true|When prop is not false, the user can copy objects and arrays to clipboard by clicking on the clipboard icon. Copy callbacks are supported. displayObjectSize|boolean|true|When set to true, objects and arrays are labeled with size displayDataTypes|boolean|true|When set to true, data type labels prefix values onEdit|(edit)=>{}|false|When a callback function is passed in, edit functionality is enabled. The callback is invoked before edits are completed. Returning false from onEdit will prevent the change from being made. see: onEdit docs onAdd|(add)=>{}|false|When a callback function is passed in, add functionality is enabled. The callback is invoked before additions are completed. Returning false from onAdd will prevent the change from being made. see: onAdd docs defaultValue|string \|number \|boolean \|array \|object|null|Sets the default value to be used when adding an item to json onDelete|(delete)=>{}|false|When a callback function is passed in, delete functionality is enabled. The callback is invoked before deletions are completed. Returning false from onDelete will prevent the change from being made. see: onDelete docs onSelect|(select)=>{}|false|When a function is passed in, clicking a value triggers the onSelect method to be called. sortKeys|boolean|false|set to true to sort object keys quotesOnKeys|boolean|true|set to false to remove quotes from keys (eg. "name": vs. name:) validationMessage|string|"Validation Error"|Custom message for validation failures to onEdit, onAdd, or onDelete callbacks displayArrayKey|boolean|true|When set to true, the index of the elements prefix values

Features

  • onEdit, onAdd and onDelete props allow users to edit the src variable
  • Object, array, string and function values can be collapsed and expanded
  • Object and array nodes display length
  • Object and array nodes support a "Copy to Clipboard" feature
  • String values can be truncated after a specified length
  • Arrays can be subgrouped after a specified length
  • Base-16 Theme Support
  • When onEdit is enabled:
    • Ctrl/Cmd+Click Edit Mode
    • Ctrl/Cmd+Enter Submit

Customizing Style

Stock Themes

RJV now supports base-16 themes!

You can specify a theme name or object when you instantiate your rjv component.

<ReactJson src={my_important_json} theme="monokai" />

Check out the list of supported themes in the component demo.

Monokai theme example

alt text

Solarized theme example

alt text

Use Your Own Theme

You can supply your own base-16 theme object.

To better understand custom themes, take a look at my example implementation and the base-16 theme styling guidelines.

onEdit, onAdd and onDelete Interaction

Pass callback methods to onEdit, onAdd and onDelete props. Your method will be invoked when a user attempts to update your src object.

The following object will be passed to your method:

{
    updated_src: src, //new src value
    name: name, //new var name
    namespace: namespace, //list, namespace indicating var location
    new_value: new_value, //new variable value
    existing_value: existing_value, //existing variable value
}

Returning false from a callback method will prevent the src from being affected.

Contributing to the source code

Run the Dev Server

# clone this repository
git clone git@github.com:mac-s-g/react-json-view.git && cd react-json-view
# install dependencies
npm install --save-dev
# run the dev server with hot reloading
npm run dev

Webpack Dev Server should automatically open up http://localhost:2000 in your web browser. If it does not, open a browser and navigate to port 2000. The hot reloader will automatically reload when files are modified in the /src/ directory.

Run the Production Build

# run the build (note: you may need to use `sudo` priveledges to run the build successfully)
npm run build

Please add tests for your code before posting a pull request.

You can run the test suite with npm run test or npm run test:watch to automatically reload when files are modified.

Docker Tools

I recommend using docker for development because it enforces environmental consistency.

For information about contributing with Docker, see the README in ./docker.

Inspiration

I drew a ton of design ideas from react-json-tree. Thanks to the RJT contributors for putting together an awesome component!

I'm also inspired by users who come up with interesting feature requests. Reach out to me with ideas for this project or other projects you want to collaborate on. My email address is listed on my github user page.