react-json-view vs react-json-tree vs react-json-pretty
Interactive JSON Visualization Components for React
react-json-viewreact-json-treereact-json-prettySimilar Packages:

Interactive JSON Visualization Components for React

react-json-pretty, react-json-tree, and react-json-view are React components designed to render JSON data in a human-readable, structured format within web applications. They transform raw JavaScript objects or JSON strings into collapsible, syntax-highlighted trees that improve debugging, configuration inspection, and data exploration experiences. While all three serve this core purpose, they differ significantly in customization capabilities, interactivity features, performance characteristics, and maintenance status.

Npm Package Weekly Downloads Trend

3 Years

Github Stars Ranking

Stat Detail

Package
Downloads
Stars
Size
Issues
Publish
License
react-json-view912,2523,663-1915 years agoMIT
react-json-tree770,80214,33963.2 kB225a year agoMIT
react-json-pretty125,847160-76 years agoMIT

Interactive JSON Visualization in React: react-json-pretty vs react-json-tree vs react-json-view

When building developer tools, admin interfaces, or debugging utilities, displaying JSON in a readable, structured way is essential. These three React packages solve that problem — but with very different trade-offs in terms of features, maintenance, and use cases. Let’s compare them head-to-head.

⚠️ Maintenance Status: One Is Officially Deprecated

react-json-pretty is deprecated. According to its npm page, it shows the notice: "This package has been deprecated. Use react-json-tree instead." The GitHub repository is archived, and there have been no updates in years. Do not use it in new projects.

react-json-tree and react-json-view are both actively maintained as of 2024, with recent releases and responsive issue tracking.

🛑 If you’re currently using react-json-pretty, migrate to one of the other two immediately.

🎨 Customization: Render Props vs Built-in Styling

react-json-tree gives you full control via render props. You can customize how keys, values, and labels appear by passing functions.

// react-json-tree: Custom key and value rendering
import JSONTree from 'react-json-tree';

<JSONTree
  data={myData}
  theme={{
    scheme: 'monokai',
    base00: '#272822',
    base0B: '#A6E22E'
  }}
  hideRoot={true}
  keyRenderer={(rawKey, keyPath) => <strong>{rawKey}</strong>}
  valueRenderer={(rawValue, valuePath) => {
    if (typeof rawValue === 'string') {
      return <em>{rawValue}</em>;
    }
    return rawValue;
  }}
/>

react-json-view uses a theme prop with predefined styles (like rjv-default, apathy, monokai) but doesn’t expose render props. You can override CSS variables or pass a custom theme object, but you can’t inject JSX into individual nodes.

// react-json-view: Theme-based styling
import ReactJson from 'react-json-view';

<ReactJson
  src={myData}
  theme="monokai"
  style={{ backgroundColor: '#272822' }}
  collapsed={2} // collapse after 2 levels
/>

react-json-pretty (deprecated) only supported basic syntax highlighting with limited theming:

// react-json-pretty (DO NOT USE)
import JsonPretty from 'react-json-pretty';

<JsonPretty id="json" data={myData} />

✏️ Interactivity: View-Only vs Editable JSON

This is the biggest functional difference.

react-json-tree is view-only. Users can expand/collapse nodes, but cannot edit values.

// react-json-tree: No editing possible
<JSONTree data={config} shouldExpandNode={() => false} />

react-json-view is fully editable by default. Users can:

  • Double-click values to edit them
  • Add new properties with the + button
  • Delete keys with the trash icon
  • Reorder arrays

You can disable editing globally or per-node:

// react-json-view: Enable/disable editing
<ReactJson
  src={userConfig}
  onEdit={({ updated_src }) => saveConfig(updated_src)}
  onDelete={({ updated_src }) => saveConfig(updated_src)}
  onAdd={({ updated_src }) => saveConfig(updated_src)}
  enableClipboard={false}
  displayObjectSize={false}
/>

react-json-pretty offered no interactivity beyond collapsible sections — and again, it’s deprecated.

🧩 Data Handling and Validation

react-json-view includes real-time validation during editing. If a user enters invalid JSON (e.g., typing { without closing), it shows a red border and prevents saving until fixed. It also enforces type safety — you can’t turn a string into a boolean unless you explicitly delete and retype.

react-json-tree assumes your data is already valid and makes no attempt to validate or correct it. It renders whatever you pass as data.

Both accept plain JavaScript objects — no need to stringify first.

// Both accept JS objects directly
const data = { name: "Alice", active: true, tags: ["dev", "ui"] };

// react-json-tree
<JSONTree data={data} />

// react-json-view
<ReactJson src={data} />

🖥️ Collapsing Behavior and Performance

All three support collapsing nested objects/arrays, but configuration differs.

react-json-tree uses shouldExpandNode for programmatic control:

<JSONTree
  data={largeData}
  shouldExpandNode={(keyName, data, level) => level < 2}
/>

react-json-view uses collapsed (number of levels to collapse initially):

<ReactJson src={largeData} collapsed={3} />

For large datasets (>10k nodes), react-json-tree tends to perform better because it doesn’t carry the overhead of editing logic. react-json-view’s interactivity comes at a cost — virtualization isn’t built in, so huge JSON blobs may cause lag.

🔌 Event Handling

react-json-view provides detailed callbacks for every user action:

<ReactJson
  src={data}
  onEdit={e => console.log('Edited:', e.updated_path, e.new_value)}
  onAdd={e => console.log('Added:', e.namespace, e.new_value)}
  onDelete={e => console.log('Deleted:', e.namespace)}
  onCopy={e => console.log('Copied:', e.src)}
/>

react-json-tree only supports click handlers on labels or values via render props — no built-in edit/add/delete events.

📦 When to Use Which

✅ Use react-json-tree if:

  • You need a lightweight, read-only JSON viewer
  • You require custom rendering (e.g., linking keys to docs, adding badges)
  • You’re building a design system or developer console where consistency matters
  • Performance with large data is critical

✅ Use react-json-view if:

  • You need an interactive JSON editor
  • Your users must modify configurations in-app (e.g., CMS settings, feature flags)
  • You want built-in validation and undo/redo (via external state management)
  • Clipboard support and object size indicators are useful

🚫 Never use react-json-pretty — it’s deprecated.

💡 Pro Tips

  • For read-only + theming: react-json-tree with a custom theme object gives you pixel-perfect control.
  • For editing + validation: react-json-view saves weeks of building your own JSON editor.
  • Avoid editing in production logs: If you’re displaying server responses or logs, stick with react-json-tree — you don’t want users accidentally mutating debug data.
  • Bundle impact: react-json-view is larger due to its feature set. If you only need viewing, react-json-tree is leaner.

🆚 Summary Table

Featurereact-json-prettyreact-json-treereact-json-view
Status❌ Deprecated✅ Active✅ Active
Editable❌ No❌ No✅ Yes
Custom Rendering❌ Limited✅ Render props❌ Theme-only
Validation❌ None❌ None✅ Real-time
Event Hooks❌ None⚠️ Via render props✅ onEdit/onAdd/onDelete
Best ForRead-only viewersInteractive editors

🔚 Final Recommendation

If you just need to display JSON nicely — go with react-json-tree. It’s fast, flexible, and battle-tested.

If you need users to edit JSON in the browser — reach for react-json-view. Its rich interaction model is hard to replicate.

And whatever you do — leave react-json-pretty in the past.

How to Choose: react-json-view vs react-json-tree vs react-json-pretty

  • react-json-view:

    Choose react-json-view when you require an interactive JSON editor with built-in support for modifying values, adding/removing properties, and real-time validation. It's best suited for configuration panels, admin dashboards, or debugging tools where users need to tweak JSON structures directly in the UI. Be aware that its editing capabilities come with higher bundle size and complexity.

  • react-json-tree:

    Choose react-json-tree when you need a lightweight, highly customizable component with fine-grained control over rendering through render props. It's ideal for embedding JSON viewers in design systems or developer tools where consistent theming and custom node rendering (e.g., adding icons or tooltips) are required. However, it doesn't support editing JSON values out of the box.

  • react-json-pretty:

    Avoid react-json-pretty for new projects — it is deprecated and no longer maintained. The npm registry explicitly marks it as deprecated with a message directing users to alternatives. While it provided basic syntax highlighting and collapsible nodes, its outdated dependencies and lack of updates make it unsuitable for modern React applications.

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

NameTypeDefaultDescription
srcJSON ObjectNoneThis property contains your input JSON
namestring or false"root"Contains the name of your root node. Use null or false for no name.
themestring"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.
styleobject{}Style attributes for react-json-view container. Explicit style attributes will override attributes provided by a theme.
iconStylestring"circle"Style of expand/collapse icons. Accepted values are "circle", triangle" or "square".
indentWidthinteger4Set the indent-width for nested objects
collapsedboolean or integerfalseWhen set to true, all nodes will be collapsed by default. Use an integer value to collapse at a particular depth.
collapseStringsAfterLengthintegerfalseWhen 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)=>{}falseCallback 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.
groupArraysAfterLengthinteger100When 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.
enableClipboardboolean or (copy)=>{}trueWhen prop is not false, the user can copy objects and arrays to clipboard by clicking on the clipboard icon. Copy callbacks are supported.
displayObjectSizebooleantrueWhen set to true, objects and arrays are labeled with size
displayDataTypesbooleantrueWhen set to true, data type labels prefix values
onEdit(edit)=>{}falseWhen 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)=>{}falseWhen 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
defaultValuestring |number |boolean |array |objectnullSets the default value to be used when adding an item to json
onDelete(delete)=>{}falseWhen 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)=>{}falseWhen a function is passed in, clicking a value triggers the onSelect method to be called.
sortKeysbooleanfalseset to true to sort object keys
quotesOnKeysbooleantrueset to false to remove quotes from keys (eg. "name": vs. name:)
validationMessagestring"Validation Error"Custom message for validation failures to onEdit, onAdd, or onDelete callbacks
displayArrayKeybooleantrueWhen 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.