1.3.9 • Published 5 months ago

jsoneditor-tpc v1.3.9

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

json5-editor

A lite JSON5 editor with smart autoComplete and zero configuration

NPM | Github | Playground

demo

usage

import { Editor } from 'json5-editor'

export default () => {
  return (
    <Editor {...props} />
  )
}

feature

  • Syntax highlight
  • Auto formatting & error correcting
  • Duplicate property name checking
  • Brace matching
  • code ruler

Not optimized for big JSON, use at your own risk

more about how it works and limitations, please refer to https://github.com/satya164/react-simple-code-editor#how-it-works

API

propdescriptiontypedefault
initialValuedefault value of textareastring''
valuevalue in the textarea, required in controlled modestring-
onChangetextarea value change callback, required in controlled mode(v: string) => void-
placeholderplaceholder of textareastring''
styleclassName of textarea and pre tagReact.CSSProperties-
classNameclassName of outer containerstring-
disabledwhether the editor is disbledbooleanfalse
readOnlywhether the editor is readonlybooleanfalse
1.3.9

5 months ago