Gathering detailed insights and metrics for @vscode/web-custom-data
Gathering detailed insights and metrics for @vscode/web-custom-data
Gathering detailed insights and metrics for @vscode/web-custom-data
Gathering detailed insights and metrics for @vscode/web-custom-data
Documentation and sample for using VS Code custom data format
npm install @vscode/web-custom-data
Module System
Unable to determine the module system for this package.
Min. Node Version
Typescript Support
Node Version
NPM Version
199 Stars
148 Commits
77 Forks
24 Watching
7 Branches
10,000 Contributors
Updated on 12 Nov 2024
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
17.1%
15,239
Compared to previous day
Last week
10.3%
72,176
Compared to previous week
Last month
17.7%
289,999
Compared to previous month
Last year
2,116.7%
2,376,349
Compared to previous year
2
VS Code ships with rich language feature support for HTML/CSS, such as auto-completion and hover information. The core of these language support are implemented in vscode-html-languageservice and vscode-css-languageservice. In the past, these libraries were coupled to outdated schemas that define HTML/CSS entities. Custom data decouples these libraries from the data they use and allows VS Code to offer up-to-date support for latest HTML/CSS proposals or frameworks built on top of HTML/CSS.
There are two primary use cases:
html.customData
and css.customData
in your settings to let VS Code load additional HTML/CSS entities, so they would show up in auto-completion, hover information etc. See helloworld sample for an example.contributes.html.customData
or contributes.css.customData
to load Custom Data into VS Code. See vscode-mavo for an example.Take this HTML auto-completion example:
<|
vscode-html-languageservice
determines that it should provide a list of tag names, such as div
, span
, p
.vscode-html-languageservice
, so <|
completes all HTML tags described in the HTML spec.html.customData
setting and contributes.html.customData
allows you to extend this list to include your own definition of HTML tags.On the one hand, we continuously curate the data VS Code provides to the HTML/CSS language services. For example, VS Code pulls data from mdn/data and mdn/browser-compat-data to provide latest information on CSS properties' usage, syntax and browser compatibility. By continously following the latest web spec, VS Code can provide latest information & up-to-date language support for new HTML/CSS entities.
On the other hand, for users and framework authors who build new technologies and frameworks on top of HTML/CSS, custom data offers an easy way for them to add support for their custom frameworks. For example:
vscode-html-languageservice
based Language Server to provide Vue-specific auto-completions.<Major>.<Minor>
.Minor
changes are backwards compatible. Custom data that satisfies V1.X
spec would be valid according to V1.0
spec.Major
changes introduce breaking changes. Custom data that satisfies V2.X
spec would likely be invalid according to V1.0
spec.samples/helloworld
: Open this sample in VS Code and start playing with custom data.samples/svg
: A real-world sample that loads SVG-related HTML/CSS entities in VS Code.samples/webcomponents
: Use custom data to get web component editor support in HTML.octref/vscode-mavo
: Use custom data to support the Mavo framework built on top of HTML/CSS./web-data
contains the data collection pipelines and the actual data being used in the VS Code HTML extension and CSS extension. It pulls data from sources such as HTML/CSS spec and MDN and massages them into the custom data format ready to use.
yarn update-sources
, which updates @mdn/browser-compat-data
, mdn-data
and attributeRelevance.js
yarn generate-data
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
No vulnerabilities found.
No security vulnerabilities found.