🌐
GitHub
github.com › josdejong › svelte-jsoneditor
GitHub - josdejong/svelte-jsoneditor: A web-based tool to view, edit, format, repair, query, transform, and validate JSON · GitHub
The TypeScript types (like Content, JSONSelection, and JSONPatchOperation) are defined in the following source file: https://github.com/josdejong/svelte-jsoneditor/blob/main/src/lib/types.ts · The editor can be styled using the available CSS variables.
Starred by 1.2K users
Forked by 145 users
Languages   TypeScript 53.8% | Svelte 36.8% | SCSS 6.3% | HTML 1.3% | JavaScript 1.2% | CSS 0.6%
🌐
GitHub
github.com › json-editor › json-editor
GitHub - json-editor/json-editor: JSON Schema Based Editor · GitHub
If true, NON required properties will have an extra toggable checkbox near the title that determines if the value must be included or not in the editor´s value ... If true, displays a dialog box with a confirmation message before node deletion. ... The default value of `format` for objects. If set to table for example, objects will use table layout if `format` is not specified. ... Max depth of the nested properties to be rendered of provided json schema.
Starred by 4.9K users
Forked by 703 users
Languages   JavaScript 61.9% | HTML 36.2% | CSS 1.9%
🌐
GitHub
github.com › topics › json-editor
json-editor · GitHub Topics · GitHub
react template json-editor nested-structures treeview ... A simple react component to handle JSON editing. No dependencies. Typescript.
🌐
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%
🌐
GitHub
github.com › rhidium › json-editor
GitHub - rhidium/json-editor: A simple web-based JSON file editor, written in TypeScript.
A simple web-based JSON file editor, written in TypeScript. - rhidium/json-editor
Author   rhidium
🌐
GitHub
github.com › mariohmol › ang-jsoneditor
GitHub - mariohmol/ang-jsoneditor: Angular Jsoneditor that works with angular 4 to angular 15
import { Component, ViewChild } from '@angular/core'; import { JsonEditorComponent, JsonEditorOptions } from 'ang-jsoneditor'; @Component({ selector: 'app-root', template: '<json-editor [options]="editorOptions" [data]="data"></json-editor>', styleUrls: ['./app.component.css'], imports: [JsonEditorComponent] }) export class AppComponent { public editorOptions: JsonEditorOptions; public data: any; // optional @ViewChild(JsonEditorComponent, { static: false }) editor: JsonEditorComponent; constructor() { this.editorOptions = new JsonEditorOptions() this.editorOptions.modes = ['code', 'text', 'tr
Starred by 162 users
Forked by 101 users
Languages   TypeScript 91.3% | HTML 8.1% | TypeScript 91.3% | HTML 8.1%
🌐
npm
npmjs.com › package › jsoneditor
jsoneditor - npm
Thanks, GitHub Actions and LambdaTest for the generous support for this open source project! This library jsoneditor has a successor: svelte-jsoneditor. The new editor is not a one-to-one replacement, so there may be reasons to stick with jsoneditor.
      » npm install jsoneditor
    
Published   Oct 15, 2025
Version   10.4.2
Author   Jos de Jong
🌐
Json-editor
json-editor.github.io › json-editor
JSON Editor Interactive Example
You can also make changes to the JSON here and set the value in the editor by clicking "Update Form" Update Form
🌐
npm
npmjs.com › package › @types › jsoneditor
@types/jsoneditor - npm
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jsoneditor.
      » npm install @types/jsoneditor
    
Find elsewhere
🌐
GitHub
github.com › dustyjay › json-editor
GitHub - dustyjay/json-editor: The JSON Editor for React is a lightweight and fully customizable React component that provides an intuitive interface for editing JSON data. It supports syntax highlighting, validation, and a tree-based structure, making it ideal for developers and applications that require interactive JSON editing.
export default tseslint.config({ extends: [ // Remove ...tseslint.configs.recommended and replace with this ...tseslint.configs.recommendedTypeChecked, // Alternatively, use this for stricter rules ...tseslint.configs.strictTypeChecked, // Optionally, add this for stylistic rules ...tseslint.configs.stylisticTypeChecked, ], languageOptions: { // other options... parserOptions: { project: ['./tsconfig.node.json', './tsconfig.app.json'], tsconfigRootDir: import.meta.dirname, }, }, })
Author   dustyjay
🌐
npm
npmjs.com › package › @types › json-editor
@types/json-editor - npm
November 21, 2023 - Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-editor.
      » npm install @types/json-editor
    
🌐
GitHub
github.com › topics › json-to-typescript
json-to-typescript · GitHub Topics · GitHub
52 free developer tools for JSON, TypeScript, Zod, regex testing, color conversion, and more. 100% client-side, no sign-up, privacy-focused. react open-source typescript nextjs developer-tools client-side monaco-editor regex-tester tailwindcss web-tools zod privacy-focused json-to-typescript developer-utilities json-conver
🌐
GitHub
github.com › topics › json-typescript
json-typescript · GitHub Topics · GitHub
A simple react component to handle JSON editing. No dependencies. Typescript. 😉 · json json-editor json-viewer react-jsonschema-form json-typescript react-json react-json-editor react-json-tree json-tree-traversal
🌐
GitHub
github.com › josdejong › jsoneditor
GitHub - josdejong/jsoneditor: A web-based tool to view, edit, format, and validate JSON · GitHub
A web-based tool to view, edit, format, and validate JSON - josdejong/jsoneditor
Starred by 12.2K users
Forked by 2.1K users
Languages   JavaScript 87.7% | SCSS 6.7% | HTML 5.6%
🌐
GitHub
github.com › topics › json-viewer
json-viewer · GitHub Topics · GitHub
August 23, 2022 - A simple react component to handle JSON editing. No dependencies. Typescript. 😉 · json json-editor json-viewer react-jsonschema-form json-typescript react-json react-json-editor react-json-tree json-tree-traversal
🌐
GitHub
github.com › constantoduol › JSONEditor
GitHub - constantoduol/JSONEditor: A react visual json editor
import {JSONEditor} from 'react-json-editor-viewer'; constructor(){ this.onJsonChange = this.onJsonChange.bind(this); } onJsonChange(key, value, parent, data){ console.log(key, value, parent, data); } <JSONEditor data={{ the: "men", that: "landed", on: "the", moon: "were", maybe: 2, i: "think", probably: ["neil armstrong", "buzz aldrin"], am_i_right: true }} collapsible onChange={this.onJsonChange} view="dual" />
Starred by 103 users
Forked by 18 users
Languages   JavaScript 99.5% | HTML 0.5% | JavaScript 99.5% | HTML 0.5%
🌐
npm
npmjs.com › package › @types › jsoneditor-for-react
@types/jsoneditor-for-react - npm
November 7, 2023 - Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jsoneditor-for-react. 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; } Last updated: Tue, 07 Nov 2023 03:09:37 GMT ·
      » npm install @types/jsoneditor-for-react
    
🌐
GitHub
github.com › samuellawrentz › rc-json-editor
GitHub - samuellawrentz/rc-json-editor: A simple react component to handle JSON editing. No dependencies. Typescript. 😉
A simple react component to handle JSON editing. No dependencies. Typescript. 😉 - samuellawrentz/rc-json-editor
Author   samuellawrentz
🌐
GitHub
github.com › angelozerr › typescript.java
GitHub - angelozerr/typescript.java: TypeScript IDE for Eclipse with JSDT & tsserver
TypeScript Editor · Completion · Templates · Hyperlink · Hover · Validation · Quick Fixes · Code Folding · Code Lens · Formatting · Mark Occurrences · Find References · Refactoring · Outline · tsconfig.json Editor · tslint.json Editor · Compile on save ·
Starred by 91 users
Forked by 14 users
Languages   Java 96.6% | HTML 2.8% | Java 96.6% | HTML 2.8%