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
Repository https://github.com/uiwjs/react-json-view
React Split
uiwjs.github.io › react-json-view
react-json-view
A React component for displaying and editing javascript arrays and JSON objects.
Videos
14:53
Generate ui in TERMINAL w/ JsonForms/React - YouTube
26:08
Generate ui w/ JsonForms/React - YouTube
Fetch Data from JSON File in React JS | React JSON [ UPDATED ] ...
36:17
Material UI Form Using Json In React | React Dynamic Form Part ...
19:49
Create Dynamic Form using JSON with Material UI | ReactJS - YouTube
12:49
Material UI Tutorial #9 - Using JSON Server - YouTube
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
Reddit
reddit.com › r/reactjs › which json viewer component do you recommend since react-json-view no one maintains it anymore.
r/reactjs on Reddit: Which JSON Viewer Component do you recommend since react-json-view no one maintains it anymore.
October 16, 2023 -
https://www.npmjs.com/package/react-json-view?activeTab=versions
It was last updated 3 years ago.
I am looking for a popular alternative to that.
Thanks.
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.
Debricked
debricked.com › select › package › npm-@uiw › react-json-view
View npm: @uiw/react-json-view | OpenText Core SCA
We cannot provide a description for this page right now
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
Repository https://github.com/mac-s-g/react-json-view
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
Aikido
intel.aikido.dev › packages › npm › @uiw › react-json-view
@uiw/react-json-view - npm package security analysis
JSON viewer for react. Latest: 2.0.0-alpha.39. No known vulnerabilities.
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'; 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', }} /> ) } import React from 'react'; import JsonView from '@uiw/react-json-view'; function value({ type, children, visible, keyName, parentValue, value, setValue, ...props }) { if (value instanceof URL) { return ( <span {...props}> <a href={value.href} target="_blank" rel="noopener noreferrer"> {children} </a>