@wanieru/json-tool
v1.1.9
Published
Simple Json Editor using a Json Schema
Downloads
1
Readme
JsonTool
Demo
https://wanieru.github.io/json-tool
Usage
<script src="https://unpkg.com/@wanieru/json-tool/lib/json-tool.js"/>const htmlElement = ...; //HTMLElement
const jsonSchema = ...; //JSON Schema
const jsonValue = ...; //JSON value
const tool = new window.JsonTool(htmlElement);
tool.load(jsonSchema, jsonValue);
const value = tool.getValue();