A browser based code editor
Find a file
2019-12-20 21:06:35 +01:00
.vscode Adapt SnippetString, publish 1.2.1 2017-01-27 15:57:50 +01:00
scripts update service & dependencies 2019-12-16 15:08:02 +01:00
src update dependencies, fix selection range issue 2019-12-17 13:00:17 +01:00
test Merge branch 'master' into on-demand-schema-loading 2018-08-12 21:18:24 +03:00
.gitignore Always compile to esm 2018-03-08 16:48:54 +01:00
.npmignore Add Copyright headers 2018-03-12 16:25:05 +01:00
LICENSE.md 1.0 2016-06-26 12:50:57 +02:00
package-lock.json Adopt latest monaco-editor-core 2019-12-20 21:06:35 +01:00
package.json Adopt latest monaco-editor-core 2019-12-20 21:06:35 +01:00
README.md Merge remote-tracking branch 'origin/master' into pr/domoritz/11 2019-09-19 10:23:13 +02:00

Monaco JSON

JSON language plugin for the Monaco Editor. It provides the following features when editing JSON files:

  • Code completion, based on JSON schemas or by looking at similar objects in the same file
  • Hovers, based on JSON schemas
  • Validation: Syntax errors and schema validation
  • Formatting
  • Document Symbols
  • Syntax highlighting
  • Color decorators for all properties matching a schema containing format: "color-hex"' (non-standard schema extension)

Schemas can be provided by configuration. See here for the API that the JSON plugin offers to configure the JSON language support.

Internally the JSON plugin uses the vscode-json-languageservice node module, providing the implementation of the features listed above. The same module is also used in Visual Studio Code to power the JSON editing experience.

Issues

Please file issues concerning monaco-json in the monaco-editor repository.

Installing

This npm module is bundled and distributed in the monaco-editor npm module.

Development

  • git clone https://github.com/Microsoft/monaco-json
  • npm install .
  • compile with npm run compile
  • watch with npm run watch
  • npm run prepublishOnly
  • open $/monaco-json/test/index.html in your favorite browser.

License

MIT