🌐
npm
npmjs.com › package › vanilla-jsoneditor
vanilla-jsoneditor - npm
December 10, 2025 - // for use in a React, Vue, or Angular project import { createJSONEditor } from 'vanilla-jsoneditor' If you want to use the library straight in the browser, use the provided standalone ES bundle: // for use directly in the browser import { createJSONEditor } from 'vanilla-jsoneditor/standalone.js' The standalone bundle contains all dependencies of vanilla-jsoneditor, for example lodash-es and Ajv.
      » npm install vanilla-jsoneditor
    
Published   Dec 10, 2025
Version   3.11.0
🌐
Rodikh
rodikh.github.io › angular-json-editor
Angular-json-editor
The object you pass to configure will be merged with the JSONEditor object. angular.module('demoApp', ['angular-json-editor']).config(function (JSONEditorProvider) { JSONEditorProvider.configure({ plugins: { sceditor: { style: 'sce/development/jquery.sceditor.default.css' } }, defaults: { options: { iconlib: 'bootstrap3', theme: 'bootstrap3', ajax: true } } }); });
🌐
StackBlitz
stackblitz.com › edit › angular-json-editor
Angular Json Editor - StackBlitz
Starter project for Angular apps that exports to the Angular CLI
🌐
CodeSandbox
codesandbox.io › examples › package › vanilla-jsoneditor
vanilla-jsoneditor examples - CodeSandbox
Use this online vanilla-jsoneditor playground to view and fork vanilla-jsoneditor example apps and templates on CodeSandbox.
🌐
npm
npmjs.com › package › ang-jsoneditor
ang-jsoneditor - npm
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
      » npm install ang-jsoneditor
    
Published   Apr 09, 2025
Version   4.0.2
Author   Mario Mol
🌐
Socket
socket.dev › npm › package › vanilla-jsoneditor
vanilla-jsoneditor - npm Package Security Analysis - Socket
August 25, 2023 - // for use in a React, Vue, or Angular project import { createJSONEditor } from 'vanilla-jsoneditor' If you want to use the library straight in the browser, use the provided standalone ES bundle: // for use directly in the browser import { createJSONEditor } from 'vanilla-jsoneditor/standalone.js' The standalone bundle contains all dependencies of vanilla-jsoneditor, for example lodash-es and Ajv.
🌐
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 library provides a vanilla bundle of the editor via the npm library vanilla-jsoneditor (instead of svelte-jsoneditor) which can be used in any browser environment and framework. In a framework like React, Vue, or Angular, you'll need to write some wrapper code around the class interface.
Starred by 1.2K users
Forked by 149 users
Languages   TypeScript 53.8% | Svelte 36.8% | SCSS 6.3% | HTML 1.3% | JavaScript 1.2% | CSS 0.6%
🌐
GitHub
github.com › josdejong › svelte-jsoneditor › blob › main › README-VANILLA.md
svelte-jsoneditor/README-VANILLA.md at main · josdejong/svelte-jsoneditor
// for use in a React, Vue, or Angular project import { createJSONEditor } from 'vanilla-jsoneditor' If you want to use the library straight in the browser, use the provided standalone ES bundle: // for use directly in the browser import { createJSONEditor } from 'vanilla-jsoneditor/standalone.js' The standalone bundle contains all dependencies of vanilla-jsoneditor, for example lodash-es and Ajv.
Author   josdejong
🌐
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%
🌐
GitHub
github.com › angular-tools › ng-jsoneditor
GitHub - angular-tools/ng-jsoneditor: Angular version of the insanely cool jsoneditor
Angular version of the insanely cool jsoneditor. Contribute to angular-tools/ng-jsoneditor development by creating an account on GitHub.
Starred by 83 users
Forked by 66 users
Languages   JavaScript 100.0% | JavaScript 100.0%
Find elsewhere
🌐
GitHub
github.com › AjinkyaBijwe › Json-Editor
GitHub - AjinkyaBijwe/Json-Editor: Angular JSON Editor made using Angular 9, json-editor js and Angular Material v8
Angular JSON Editor made using Angular 9, json-editor js and Angular Material v8 - AjinkyaBijwe/Json-Editor
Starred by 7 users
Forked by 3 users
Languages   CSS 58.0% | TypeScript 34.6% | JavaScript 4.1% | HTML 3.3% | CSS 58.0% | TypeScript 34.6% | JavaScript 4.1% | HTML 3.3%
🌐
npm
npmjs.com › package › @vidday › vanilla-jsoneditor
@vidday/vanilla-jsoneditor - npm
This is the vanilla variant of svelte-jsoneditor, which can be used in vanilla JavaScript or frameworks like SolidJS, React, Vue, Angular.
      » npm install @vidday/vanilla-jsoneditor
    
Published   Oct 23, 2022
Version   0.7.20
🌐
CodePen
codepen.io › Gary-zheng › pen › oLpwYG
Angular -JsonEditor-Demo
var json = {"Array": [1, 2, 3], "Boolean": true, "Null": null, "Number": 123, "Object": {"a": "b", "c": "d"}, "String": "Hello World"}; angular.module('ngApp', ['ng.jsoneditor']).controller('ngCtrl', function ($scope) { $scope.obj = {data: json, ...
🌐
npm
npmjs.com › package › svelte-jsoneditor
svelte-jsoneditor - npm
December 10, 2025 - The library provides a vanilla bundle of the editor via the npm library vanilla-jsoneditor (instead of svelte-jsoneditor) which can be used in any browser environment and framework. In a framework like React, Vue, or Angular, you'll need to write some wrapper code around the class interface.
      » npm install svelte-jsoneditor
    
Published   Dec 10, 2025
Version   3.11.0
🌐
GitHub
github.com › bastiendonjon › angular-jsoneditor
GitHub - bastiendonjon/angular-jsoneditor: Jsoneditor module for Angular
$scope.json = { "products": [{ "_id": 1, "label": "product1" }, { "_id": 2, "label": "product2" }] }; --optional-- $scope.jsoneditorOptions = { "name": 'Products' };
Starred by 6 users
Forked by 4 users
🌐
npm
npmjs.com › package › angular-jsoneditor
angular-jsoneditor - npm
<angular-jsoneditor ng-model="data" options="options" style="width: 100%; height: 400px;"></angular-jsoneditor>
      » npm install angular-jsoneditor
    
Published   Mar 24, 2017
Version   0.0.2
Author   Paul Biester
🌐
Npm
npm.io › package › vanilla-jsoneditor
Vanilla-jsoneditor NPM | npm.io
// for use in a React, Vue, or Angular project import { createJSONEditor } from 'vanilla-jsoneditor' If you want to use the library straight in the browser, use the provided standalone ES bundle: // for use directly in the browser import { createJSONEditor } from 'vanilla-jsoneditor/standalone.js' The standalone bundle contains all dependencies of vanilla-jsoneditor, for example lodash-es and Ajv.