jsoneditor/README.md

53 lines
1.6 KiB
Markdown
Raw Normal View History

2012-08-22 02:27:08 +08:00
# JSON Editor Online
http://jsoneditoronline.org/
2012-04-25 15:12:24 +08:00
2012-08-21 03:52:36 +08:00
2012-08-22 02:33:49 +08:00
### Description
2012-08-21 03:52:36 +08:00
JSON Editor Online is a web-based tool to view, edit, and format JSON.
It shows your data side by side in a clear, editable treeview and in
2013-03-09 05:12:02 +08:00
a code editor.
2012-08-21 03:52:36 +08:00
2013-02-11 00:30:37 +08:00
### Screenshot
<a href="http://jsoneditoronline.org">
<img alt="jsoneditoronline"
src="https://raw.github.com/josdejong/jsoneditoronline/master/misc/screenshots/jsoneditoronline.png">
</a>
2012-08-22 02:33:49 +08:00
### Features
2012-08-21 03:52:36 +08:00
2013-03-09 05:12:02 +08:00
- View and edit JSON side by side in a treeview and a code editor.
2012-08-21 03:52:36 +08:00
- Edit, add, move, remove, and duplicate fields and values.
- Change type of values.
2013-02-10 22:17:35 +08:00
- Sort arrays and objects.
2012-08-21 03:52:36 +08:00
- Colorized values, color depends of the value type.
- Search & highlight text in the treeview.
2012-11-04 22:26:05 +08:00
- Undo and redo all actions.
- Load and save files and urls.
2013-03-09 05:29:26 +08:00
- Format, compact, and inspect JSON in the code editor powered by [Ace](http://ace.ajax.org/).
2013-02-10 22:17:35 +08:00
- Library can be loaded as CommonJS module, AMD module, or as a regular javascript file.
2012-08-21 03:52:36 +08:00
2012-08-22 02:33:49 +08:00
### Getting started
2012-08-21 03:52:36 +08:00
2012-08-25 19:54:57 +08:00
- Web app: http://jsoneditoronline.org/
- Chrome app: https://chrome.google.com/webstore/detail/json-editor/lhkmoheomjbkfloacpgllgjcamhihfaj
- Wiki: https://github.com/josdejong/jsoneditoronline/wiki/
2013-01-06 05:24:08 +08:00
- Downloads: http://jsoneditoronline.org/downloads/
- Sourcecode: https://github.com/josdejong/jsoneditoronline/
2012-08-22 02:36:26 +08:00
2012-08-22 02:27:08 +08:00
2013-02-10 22:17:35 +08:00
### Build
The code of the JSON Editor is located in the folder `jsoneditor`.
The code for the web application in `app/web`.
To build the library from sourcecode, run
ant
in the root of the project. This will generate a folder `build` containing
generated library and web application.