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
Published Nov 07, 2023
Version 0.0.7
npm
npmjs.com › package › jsoneditor-react
jsoneditor-react - npm
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
» npm install jsoneditor-react
Published Dec 17, 2021
Version 3.1.2
Author Ivan Kopeykin
Repository https://github.com/vankop/jsoneditor-react
Videos
jsDelivr
jsdelivr.com › package › npm › @types › jsoneditor-for-react
@types/jsoneditor-for-react CDN by jsDelivr - A CDN for npm and GitHub
November 7, 2023 - A free, fast, and reliable CDN for @types/jsoneditor-for-react. TypeScript definitions for jsoneditor-for-react
Published Apr 03, 2018
npm
npmjs.com › package › @types › jsoneditor
@types/jsoneditor - npm
TypeScript definitions for jsoneditor. Latest version: 9.9.6, last published: 3 months ago. Start using @types/jsoneditor in your project by running `npm i @types/jsoneditor`. There are 9 other projects in the npm registry using @types/jsoneditor.
» npm install @types/jsoneditor
Published Aug 12, 2025
Version 9.9.6
CodeSandbox
codesandbox.io › examples › package › @types › jsoneditor-for-react
@types/jsoneditor-for-react examples - CodeSandbox
Use this online @types/jsoneditor-for-react playground to view and fork @types/jsoneditor-for-react example apps and templates on CodeSandbox.
npm
npmjs.com › package › @types › react-json-editor-ajrm
@types/react-json-editor-ajrm - npm
TypeScript definitions for react-json-editor-ajrm. Latest version: 2.5.6, last published: 2 years ago. Start using @types/react-json-editor-ajrm in your project by running `npm i @types/react-json-editor-ajrm`. There are 1 other projects in the npm registry using @types/react-json-editor-ajrm.
» npm install @types/react-json-editor-ajrm
Published Nov 07, 2023
Version 2.5.6
Ismaelga
ismaelga.github.io › react-json-editor
react-json-editor - A React dynamic form component for react using JSON-Schema.
We cannot provide a description for this page right now
GitHub
github.com › CarlosNZ › json-edit-react
GitHub - CarlosNZ/json-edit-react: React component for editing/viewing JSON/object data · GitHub
Types · Issues, bugs, suggestions? Roadmap · Inspiration · Changelog · # 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 › @types › json-editor
@types/json-editor - npm
TypeScript definitions for json-editor. Latest version: 0.0.10, last published: 2 years ago. Start using @types/json-editor in your project by running `npm i @types/json-editor`. There are 2 other projects in the npm registry using @types/json-editor.
» npm install @types/json-editor
Published Nov 21, 2023
Version 0.0.10
GitHub
github.com › vankop › jsoneditor-react
GitHub - vankop/jsoneditor-react: react wrapper implementation for https://github.com/josdejong/jsoneditor
Starred by 277 users
Forked by 107 users
Languages JavaScript 99.8% | CSS 0.2% | JavaScript 99.8% | CSS 0.2%
CodeSandbox
codesandbox.io › s › jsoneditor-react-typescript-2fwsy
JSONEditor + React + TypeScript - CodeSandbox
July 7, 2019 - JSONEditor + React + TypeScript using @types/react-jsonschema-form, mathjs, react, react-dom, react-jsonschema-form, react-scripts-ts
Published Jul 07, 2019
Repository https://codesandbox.io/s/2fwsy
GitHub
github.com › DefinitelyTyped › DefinitelyTyped › tree › master › types › jsoneditor-for-react
DefinitelyTyped/types/jsoneditor-for-react at master · DefinitelyTyped/DefinitelyTyped
The repository for high quality TypeScript type definitions. - DefinitelyTyped/types/jsoneditor-for-react at master · DefinitelyTyped/DefinitelyTyped
Author DefinitelyTyped
npm
npmjs.com › package › json-edit-react
json-edit-react - npm
React component for editing or viewing JSON/object data. Latest version: 1.29.0, last published: 4 months ago. Start using json-edit-react in your project by running `npm i json-edit-react`. There are 29 other projects in the npm registry using ...
» npm install json-edit-react
Published Oct 01, 2025
Version 1.29.0
Author Carl Smith
Repository https://github.com/CarlosNZ/json-edit-react
GitHub
github.com › felipecarrillo100 › react-jsoneditor-wrapper
GitHub - felipecarrillo100/react-jsoneditor-wrapper: A React Typescript wrapper for jsoneditor by josdejong.
A React Typescript wrapper for jsoneditor by josdejong. - felipecarrillo100/react-jsoneditor-wrapper
Starred by 3 users
Forked by 2 users
Languages TypeScript 72.5% | CSS 27.5% | TypeScript 72.5% | CSS 27.5%
Stack Overflow
stackoverflow.com › questions › 65791243 › convert-class-component-in-react-javascript-to-functional-component-in-react-typ
reactjs - Convert class component in React Javascript to Functional Component in React TypeScript - Stack Overflow
I have since ported the code into React TypeScript as under. Am I doing the right thing? Are any further improvements recommended? ... import React, {Component} from 'react'; import JSONEditor from 'jsoneditor'; import 'jsoneditor/dist/jsoneditor.css'; import './JSONEditorDemo.css'; export default class JSONEditorDemo extends Component { componentDidMount () { const options = { mode: 'tree', onChangeJSON: this.props.onChangeJSON }; this.jsoneditor = new JSONEditor(this.container, options); this.jsoneditor.set(this.props.json); } componentWillUnmount () { if (this.jsoneditor) { this.jsoneditor.destroy(); } } componentDidUpdate() { this.jsoneditor.update(this.props.json); } render() { return ( <div className="jsoneditor-react-container" ref={elem => this.container = elem} /> ); } }
Stack Overflow
stackoverflow.com › questions › 71948069 › how-to-test-jsoneditor-in-react-component
reactjs - How to test jsoneditor in react component - Stack Overflow
import React, { useEffect, useRef } from 'react' import JSONEditor from "jsoneditor"; import 'jsoneditor/dist/jsoneditor.css'; export const JsonPanel = ({ json }: any) => { const jsonRef = useRef<HTMLDivElement | null>(null) useEffect(() => { let jsonEditor: JSONEditor | null = null if (jsonRef.current) { jsonEditor = new JSONEditor(jsonRef.current, { modes: ['code', 'tree'] }, json); } return () => jsonEditor?.destroy() }, [json]) return ( <div id='json-panel' ref={jsonRef} /> ) }