A browser based code editor
Find a file
Martin Aeschlimann 485bb60924 update & adapt
2019-03-04 23:24:27 +01:00
.vscode Adapt SnippetString, publish 1.2.1 2017-01-27 15:57:50 +01:00
scripts Bundle AMD using requirejs 2018-03-13 16:22:00 +01:00
src update & adapt 2019-03-04 23:24:27 +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 update & adapt 2019-03-04 23:24:27 +01:00
package.json update & adapt 2019-03-04 23:24:27 +01:00
README.md update readme 2018-04-30 16:03:22 +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
  • cd monaco-json
  • npm install .
  • npm run prepublish
  • open $/monaco-json/test/index.html in your favorite browser.

License

MIT