Angular Json Editor (wrapper for jsoneditor). View/Edit Json file with formatting.
Live Demo | StackBlitz template
Working with Angular 17 / 18 / 19 / 20 / 21. Requires Angular 17 or higher.
To install this library with npm, run below command:
$ npm install --save jsoneditor ang-jsoneditorExample:
<json-editor style="height: 500px;" [options]="editorOptions" [data]="data" (change)="getData($event)"></json-editor>Important:
<json-editor>requires an explicit height for tree/view/form modes to enable search scrolling and proper layout. Set it directly on the element or via a CSS class. Without a height, the editor expands to fit its content and the built-in search will not auto-scroll to results.
Import the standalone component as below:
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', 'tree', 'view']; // set all allowed modes
//this.options.mode = 'code'; //set only one mode
this.data = {"products":[{"name":"car","product":[{"name":"honda","model":[{"id":"civic","name":"civic"},{"id":"accord","name":"accord"},{"id":"crv","name":"crv"},{"id":"pilot","name":"pilot"},{"id":"odyssey","name":"odyssey"}]}]}]}
}
}Note : For better styling, add below line to your main style.css/scss file
@import "jsoneditor/dist/jsoneditor.min.css";Angular 16+ new build system (esbuild): The old
~prefix (e.g.~jsoneditor/...) is webpack-specific and is not supported by the new esbuild-based builder. Use the path without~as shown above, or add the file directly to thestylesarray inangular.json:"styles": [ "node_modules/jsoneditor/dist/jsoneditor.min.css", "src/styles.scss" ]
Build it integrated with ReactiveForms:
this.form = this.fb.group({
myinput: [this.data]
});<form [formGroup]="form" (submit)="submit()">
<json-editor [options]="editorOptions2" formControlName="myinput">
</json-editor>
</form>Besides all the configuration options from the original jsoneditor, Angular Json Editor supports one additional option:
expandAll - to automatically expand all nodes upon json loaded with the data input.
If you have issue with the height of the component, you can try one of those solutions:
When you import CSS:
@import "jsoneditor/dist/jsoneditor.min.css";
textarea.jsoneditor-text{min-height:350px;}Or Customizing the CSS:
:host ::ng-deep json-editor,
:host ::ng-deep json-editor .jsoneditor,
:host ::ng-deep json-editor > div,
:host ::ng-deep json-editor jsoneditor-outer {
height: 500px;
}Or as a inner style in component:
<json-editor class="col-md-12" #editorExample style="min-height: 300px;" [options]="editorOptionsData" [data]="dataStructure"></json-editor>For code view you can change the height using this example:
.ace_editor.ace-jsoneditor {
min-height: 500px;
}Use debug mode to see in your console the data and options passed to jsoneditor. Copy this and paste in your issue when reporting bugs.
<json-editor [debug]="true" [options]="editorOptionsData" [data]="dataStructure"></json-editor>If you find youself trying to use an custom option that is not mapped here, you can do:
let editorOptions: JsonEditorOptions = new JsonEditorOptions(); (<any>this.editorOptions).templates = [{menu options objects as in json editor documentation}]See the issue
If you want to support IE, please follow this guide:
To use multiple jsoneditors in your view you cannot use the same editor options.
You should have something like:
<div *ngFor="let prd of data.products" class="w-100-p p-24" >
<json-editor [options]="makeOptions()" [data]="prd" (change)="showJson($event)"></json-editor>
</div>makeOptions = () => {
return new JsonEditorOptions();
}Live demo: https://mariohmol.github.io/ang-jsoneditor/
Demo component files are included in the Git project under src/app/demo, with examples for ngInit, change events, reactive forms, and more.
To rebuild the demo locally:
npm run build:pagesWhen publishing to npm, see: https://docs.npmjs.com/misc/developers
Fork, clone this repo and install dependencies. This project just works with webpack 4 (dont change to 5):
npm i -g rimraf
npm iMIT(./LICENSE)
