🌐
npm
npmjs.com › package › jsoneditor-react
jsoneditor-react - npm
React implementation of https://github.com/josdejong/jsoneditor. Latest version: 3.1.2, last published: 4 years ago. Start using jsoneditor-react in your project by running `npm i jsoneditor-react`. There are 72 other projects in the npm registry using jsoneditor-react.
      » npm install jsoneditor-react
    
Published   Dec 17, 2021
Version   3.1.2
Author   Ivan Kopeykin
🌐
npm
npmjs.com › package › json-edit-react
json-edit-react - npm
# Depending on your package manager: npm i json-edit-react # OR yarn add json-edit-react · import { JsonEditor } from 'json-edit-react' // In your React component: return ( <JsonEditor data={ jsonData } setData={ setJsonData } // optional { ...otherProps } /> ); (for end user) It's pretty self explanatory (click the "edit" icon to edit, etc.), but there are a few not-so-obvious ways of interacting with the editor: Double-click a value (or a key) to edit it ·
      » npm install json-edit-react
    
Published   Oct 01, 2025
Version   1.29.0
Author   Carl Smith
🌐
npm
npmjs.com › package › @sagold › react-json-editor
@sagold/react-json-editor - npm
import { useEditor, Widget } from '@sagold/react-json-editor'; import defaultWidgets from '@sagold/rje-mantine-widgets'; import '@sagold/rje-mantine-widgets/dist/styles.css'; function MyForm({ schema, data }) { const editor = useEditor({ schema, data, widgets: defaultWidgets, onChange: (data, state) => { console.log('data', data, 'root', state); } }); return ( <div className="rje rje-form rje-theme rje-theme--light"> <Widget editor={editor} /> </div> ); }
      » npm install @sagold/react-json-editor
    
Published   Feb 10, 2025
Version   0.36.0
🌐
GitHub
github.com › vankop › jsoneditor-react
GitHub - vankop/jsoneditor-react: react wrapper implementation for https://github.com/josdejong/jsoneditor
react wrapper implementation for josdejong/jsoneditor · npm install --save jsoneditor jsoneditor-react · jsoneditor-react using minimalist version of jsoneditor to minimize flat bundle size, so if you want to use Ajv or Ace Editor install ...
Starred by 277 users
Forked by 107 users
Languages   JavaScript 99.8% | CSS 0.2% | JavaScript 99.8% | CSS 0.2%
🌐
npm
npmjs.com › package › react-json-editor-ajrm
react-json-editor-ajrm - npm
A stylish, editor-like, modular, react component for viewing, editing, and debugging javascript object syntax!. Latest version: 2.5.14, last published: 3 years ago. Start using react-json-editor-ajrm in your project by running `npm i ...
      » npm install react-json-editor-ajrm
    
Published   Jan 29, 2023
Version   2.5.14
Author   andrew.redican.mejia@gmail.com
🌐
GitHub
github.com › CarlosNZ › json-edit-react
GitHub - CarlosNZ/json-edit-react: React component for editing/viewing JSON/object data · GitHub
# Depending on your package manager: npm i json-edit-react # OR yarn add json-edit-react · import { JsonEditor } from 'json-edit-react' // In your React component: return ( <JsonEditor data={ jsonData } setData={ setJsonData } // optional { ...otherProps } /> ); (for end user) It's pretty self explanatory (click the "edit" icon to edit, etc.), but there are a few not-so-obvious ways of interacting with the editor: Double-click a value (or a key) to edit it ·
Starred by 616 users
Forked by 37 users
Languages   TypeScript 86.8% | CSS 5.5% | Python 4.1% | JavaScript 3.4% | HTML 0.2%
🌐
npm
npmjs.com › package › react-json-editor
react-json-editor - npm
A React dynamic form component for react using JSON-Schema.. Latest version: 0.3.0, last published: 9 years ago. Start using react-json-editor in your project by running `npm i react-json-editor`. There are 3 other projects in the npm registry ...
      » npm install react-json-editor
    
Published   May 19, 2017
Version   0.3.0
Author   Ismael Abreu
🌐
Carlosnz
carlosnz.github.io › json-edit-react
JSON•Edit•React
A highly-configurable React component for editing or viewing JSON/object data
🌐
Bytescrum
blog.bytescrum.com › how-to-use-jsoneditor-in-a-react-app
How to Use JSONEditor in a React App
March 29, 2024 - In this tutorial, we'll walk through ... updated JSON data back to a file. First, install the JSONEditor library using npm: npm install jsoneditor ·...
🌐
npm
npmjs.com › package › @types › jsoneditor-for-react
@types/jsoneditor-for-react - npm
import JSONEditor, { JSONEditorOptions } from "jsoneditor"; import * as React from "react"; export interface ReactJsonEditorProps { values: {}; } export default class ReactJsoneditor extends React.Component<ReactJsonEditorProps> { private editor?: JSONEditor | undefined; private options?: JSONEditorOptions | undefined; }
      » npm install @types/jsoneditor-for-react
    
Find elsewhere
🌐
GitHub
github.com › shridhar-tl › react-json-editor
GitHub - shridhar-tl/react-json-editor: Contains source code for the JSON Editor package available in NPM
npm i reactjs-json-editor@latest --save · Once installed you can import this component along with its styles and you are done. import React, { PureComponent } from 'react'; import { JSONEditor } from 'reactjs-json-editor'; import 'reactjs-json-editor/css/style.css'; class App extends PureComponent { state = { objectToEdit: { aString: 'Some string', aNumber: 123.45, aLink: 'https://www.google.com', aNull: null, anUndefined: undefined, object: { anArray: [ new Date(), { string: 'Some other string' } ] } } }; setValue = (value) => this.setState({ objectToEdit: value }); render() { const { objectToEdit } = this.state; return ( <JSONEditor value={objectToEdit} onChange={this.setValue} /> ); } } export default App; Supports viewing JS Object / JSON in tree format.
Author   shridhar-tl
🌐
npm
npmjs.com › package › react-jsondata-editor › v › 2.0.0
react-jsondata-editor - npm
A JSON editor react library that displays and manipulates JSON String(object). It gets height and width from a parent's component frame size and fits the size. It supports string, number, null, boolean, object, and array types.
      » npm install react-jsondata-editor
    
Published   Nov 29, 2021
Version   2.0.0
Author   Junhyeok Bang
🌐
DhiWise
dhiwise.com › post › mastering-jsoneditor-react-for-efficient-data-manipulation
Mastering JSONEditor React: A Comprehensive Guide
October 25, 2023 - It is a wrapper around the JSONEditor library, which provides a graphical user interface for working with JSON data. The JSONEditor React component makes it easy to integrate this functionality into a React application.
🌐
GitHub
github.com › vankop › jsoneditor-react › blob › master › README.md
jsoneditor-react/README.md at master · vankop/jsoneditor-react
react wrapper implementation for [josdejong/jsoneditor](https://github.com/josdejong/jsoneditor) · ## Installation · · ``` npm install --save jsoneditor jsoneditor-react ·
Author   vankop
🌐
npm
npmjs.com › package › react-json-editor-viewer
react-json-editor-viewer - npm
Latest version: 1.0.7, last published: 6 years ago. Start using react-json-editor-viewer in your project by running `npm i react-json-editor-viewer`. There are 5 other projects in the npm registry using react-json-editor-viewer.
      » npm install react-json-editor-viewer
    
Published   Jul 29, 2019
Version   1.0.7
Author   Constant Oduol
🌐
NPM Compare
npm-compare.com › jsoneditor,jsoneditor-react,react-json-editor-ajrm,react-json-view,react-jsonschema-form
react-json-view vs jsoneditor vs react-json-editor-ajrm vs react-jsonschema-form vs jsoneditor-react | JSON Editing Libraries for React
This package wraps the jsoneditor library, allowing you to use it as a React component while maintaining the same features and functionality of jsoneditor. ... react-json-view is a React component that allows developers to display and edit JSON data in a user-friendly format.
🌐
CodeSandbox
codesandbox.io › examples › package › jsoneditor-react
jsoneditor-react examples - CodeSandbox
Use this online jsoneditor-react playground to view and fork jsoneditor-react example apps and templates on CodeSandbox.
🌐
ReactScript
reactscript.com › home › categories › others › visual json editor in react
Visual JSON Editor In React | Reactscript
September 15, 2022 - # NPM $ npm i react-json-editor-ui · import * as React from 'react' import * as ReactDOM from 'react-dom' import JsonEditor from 'react-json-editor-ui' import 'react-json-editor-ui/dist/react-json-editor-ui.cjs.development.css' 2. Basic usage.
🌐
Npm
npm.io › package › jsoneditor-react
Jsoneditor-react NPM | npm.io
jsoneditor-react using minimalist version of jsoneditor to minimize flat bundle size, so if you want to use Ajv or Ace Editor install them as well