🌐
npm
npmjs.com › package › @uiw › react-json-view
@uiw/react-json-view - npm
January 20, 2026 - import React from 'react'; import JsonView from '@uiw/react-json-view'; export default function Demo() { return ( <JsonView value={{ url: new URL('https://example.com?t=12'), urlStr: "https://example.com", github: "https://example.com", }} style={{ '--w-rjv-background-color': '#ffffff', }} /> ) } Supports certain partial customizations such as: <Copied />, <CountInfo />, <CountInfoExtra />, <Ellipsis />, <KeyName />, <Row /> import React, { Fragment } from 'react'; import JsonView, { ValueQuote } from '@uiw/react-json-view'; const Copied = JsonView.Copied; export default function Demo() { retu
      » npm install @uiw/react-json-view
    
Published   Jan 20, 2026
Version   2.0.0-alpha.41
Author   Kenny Wang
🌐
React Split
uiwjs.github.io › react-json-view
react-json-view
A React component for displaying and editing javascript arrays and JSON objects.
🌐
GitHub
github.com › uiwjs › react-json-view › releases
Releases · uiwjs/react-json-view
A React component for displaying and editing javascript arrays and JSON objects. - uiwjs/react-json-view
Author   uiwjs
🌐
GitHub
github.com › uiwjs › react-json-view › issues
uiwjs/react-json-view
A React component for displaying and editing javascript arrays and JSON objects. - uiwjs/react-json-view
Author   uiwjs
🌐
CodeSandbox
codesandbox.io › examples › package › @uiw › react-json-view
@uiw/react-json-view examples - CodeSandbox
Use this online @uiw/react-json-view playground to view and fork @uiw/react-json-view example apps and templates on CodeSandbox.
🌐
Bundlephobia
bundlephobia.com › package › @uiw › react-json-view
@uiw/react-json-view ❘ Bundlephobia
Find the size of javascript package @uiw/react-json-view. Bundlephobia helps you find the performance impact of npm packages.
Find elsewhere
🌐
npm
npmjs.com › package › react-json-view-lite
react-json-view-lite - npm
September 6, 2025 - react-json-view-lite is a tiny component for React allowing to render JSON as a tree. It focused on the balance between performance for large JSON inputs and functionality. It might not have all the rich features (suce as customization, copy, ...
      » npm install react-json-view-lite
    
Published   Sep 06, 2025
Version   2.5.0
Author   AnyRoad
🌐
npm
npmjs.com › package › react-json-view
react-json-view - npm
March 9, 2021 - RJV is a React component for displaying and editing javascript arrays and JSON objects.
      » npm install react-json-view
    
Published   Mar 09, 2021
Version   1.21.3
Author   Mac Gainor
🌐
CodeSandbox
codesandbox.io › s › react-json-view-4z348
react-json-view - CodeSandbox
August 16, 2020 - react-json-view by rhgrieve using @fortawesome/fontawesome-svg-core, @fortawesome/free-regular-svg-icons, @fortawesome/free-solid-svg-icons, @fortawesome/react-fontawesome, aphrodite, clipboard, prism-react-renderer, react, react-alert
Published   Aug 14, 2020
Author   rhgrieve
🌐
npm
npmjs.com › search
keywords:json-view - npm search
React json view plugin, supports expansion and hiding.
🌐
CloudDefense.ai
clouddefense.ai › code › javascript › example › react-json-view
Top 10 Examples of react-json-view code in Javascript
render() { // eslint-disable-next-line no-undef const ReactJson = require('react-json-view').default const { src } = this.props const StyledReactJsonContainer = styled.div` .string-value { text-overflow: ellipsis; max-width: 800px; overflow: hidden; display: inline-block; } ` return ( )
🌐
Npm
npm.io › package › react-json-view-preview
React-json-view-preview NPM | npm.io
import React from 'react'; import JsonView from '@uiw/react-json-view'; const object = { string: 'Lorem ipsum dolor sit amet', integer: 42, float: 114.514, object: { 'first-child': true, 'second-child': false, 'last-child': null, }, nestedArray: [ [1, 2], [3, 4], ], } const Arrow = (props) => { const { style, 'data-expand': expand, ...reset } = props; const svgProps = { style: { cursor: 'pointer', height: '1em', width: '1em' }, viewBox: '0 0 24 24', fill: 'var(--w-rjv-arrow-color, currentColor)', ...reset } if (!expand) { return ( <svg {...svgProps}> <path d="M12,20C7.59,20 4,16.41 4,12C4,7.59