# Usage ### Install Install via npm: npm install jsoneditor ## Load To implement JSONEditor in a web application, load the javascript and css file in the head of the HTML page: ```html ``` ## Use In the body, create a div element with an id and a size: ```html
``` After the page is loaded, load the editor with javascript: ```js var container = document.getElementById("jsoneditor"); var options = { mode: 'tree' }; var editor = new JSONEditor(container, options); ``` To set JSON data in the editor: ```js var json = { "Array": [1, 2, 3], "Boolean": true, "Null": null, "Number": 123, "Object": {"a": "b", "c": "d"}, "String": "Hello World" }; editor.set(json); ``` To get JSON data from the editor: ```js var json = editor.get(); ``` ## Full Example ```html

``` For more examples, see the [examples section](https://github.com/josdejong/jsoneditor/tree/master/examples).