For Angular 10, you can use version 1.10.5 of the Library.
npm i [email protected]
For anyone reading this after 2020 and needs a solution for angular 11 and 12 (and 13 soon).
I've forked the repository and updated it, as i needed the library for a personal project and the original project doesn't seem to be actively maintained at the moment.
https://www.npmjs.com/package/@maaxgr/ang-jsoneditor
For Angular 11:
npm install @maaxgr/ang-jsoneditor@11
For Angular 12:
npm install @maaxgr/ang-jsoneditor@12
Answer from Caelis on Stack Overflownpm
npmjs.com › package › ang-jsoneditor
ang-jsoneditor - npm
Angular Json Editor (wrapper for jsoneditor).
» npm install ang-jsoneditor
Published Apr 09, 2025
Version 4.0.2
Author Mario Mol
Repository https://github.com/mariohmol/ang-jsoneditor
JSON Editor Online
jsoneditoronline.org
JSON Editor Online: edit JSON, format JSON, query JSON
JSON Editor Online is the original and most copied JSON Editor on the web. Use it to view, edit, format, repair, compare, query, transform, validate, and share your JSON data.
jsoneditor - Any json editor in angular 10? - Stack Overflow
I was using ang-jsoneditor before I upgrade my nodejs (was 8, now 12) and angular (was 7, now 10). After the upgrade, the ang-jsoneditor seems not working, and error is core.js:4442 ERROR TypeError: More on stackoverflow.com
angular - ERROR in node_modules/ang-jsoneditor/jsoneditor/jsoneditor.component.d.ts(13,9) - Stack Overflow
So, I am working on an angular project and recently I started to face this issue while running npm start. I am not facing the issue, if copy the older node-modules folder but only when I do a fres... More on stackoverflow.com
Unable to change the height using ang-jsoneditor for Json editor with Angular 6
We are using ang-jsoneditor NPM Module for adding the JSON editor in my Angular 6 application. This JSON editor is working fine in call cases except this one, I am trying to change the height of my... More on stackoverflow.com
Best Angular JSON editor?
Could use Monaco editor. It's open source and has been easy to work with ime and is feature rich https://github.com/microsoft/monaco-editor Edit: added GitHub link More on reddit.com
GitHub
github.com › mariohmol › ang-jsoneditor › issues
mariohmol/ang-jsoneditor
Angular Jsoneditor that works with angular 4 to angular 15 - mariohmol/ang-jsoneditor
Author mariohmol
Andremartin
npm.andremartin.de › - › web › detail › ang-jsoneditor
Verdaccio
We cannot provide a description for this page right now
npms
npms.io › search
ang-jsoneditor
npms was built to empower the javascript community by providing a better and open sourced search for node modules.
npm
npmjs.com › search
keywords:ang-jsoneditor - npm search
## About this repository This is a fork of mariohmol's [ang-jsoneditor](https://github.com/mariohmol/ang-jsoneditor) with support for Angular 11, 12 and 13.
Rodikh
rodikh.github.io › angular-json-editor
Angular-json-editor
Angular-json-editor : An angular wrapper for jdorn/json-editor
npm
npmjs.com › package › @maaxgr › ang-jsoneditor
@maaxgr/ang-jsoneditor - npm
» npm install @maaxgr/ang-jsoneditor
Published Nov 25, 2022
Version 14.0.0
Author Max Großmann
Repository https://github.com/MaaxGr/ang-jsoneditor
UNPKG
app.unpkg.com › ang-jsoneditor@1.5.6 › files › README.md
ang-jsoneditor
Angular Json Editor (wrapper for jsoneditor).
Jsonmate
jsonmate.com
JSONMate - JSON editor, inspector and beautifier
Edit your JSON directly in the textarea above. The JSON editor will get updated when you leave the field · Examples: .property, :has(:root > .arr), string:last-child
Jeremydorn
jeremydorn.com › json-editor
JSON Editor Example
// Set default options JSONEditor.defaults.options.theme = 'bootstrap2'; // Initialize the editor var editor = new JSONEditor(document.getElementById("editor_holder"),{ schema: { type: "object", properties: { name: { "type": "string" } } } }); // Set the value editor.setValue({ name: "John Smith" }); // Get the value var data = editor.getValue(); console.log(data.name); // "John Smith" // Validate var errors = editor.validate(); if(errors.length) { // Not valid } // Listen for changes editor.on("change", function() { // Do something...