browser-support
A web component for showing browser-support data
from the Web Features project.
This is inspired by the official
baseline-status
component
from Google and the Web Platform DX community group.
It currently uses their https://api.webstatus.dev/v1/features/
API.
Features
- Stand-alone component, without Lit or other frameworks
- Responsive to font sizes, available space, and light/dark schemes
- Allows customization of the title markup (
h2
by default) - 'Newly supported' web features show a timeline towards broad support
- Allows for simple light-dom fallback & progressive enhancement
Demo
Examples
General usage example:
<script type="module" src="browser-support.js"></script>
<browser-support data-feature="container-queries"></browser-support>
<browser-support>
<h3 slot="title">Container Style Queries</h3>
<a href="https://web-platform-dx.github.io/web-features-explorer/features/container-style-queries/">
Browser support data
</a>
</browser-support>
Installation
You have a few options (choose one):
- Install via
npm:
npm install @oddbird/browser-support
- Download the source manually from GitHub
into your project.
- Skip this step
and use the script directly
via a 3rd party CDN
(not recommended for production use)
Usage
Make sure you include the <script>
in your project
(choose one, and update the version number as needed):
<script type="module" src="browser-support.js"></script>
<script
type="module"
src="https://www.unpkg.com/@oddbird/browser-support@0.1.0/browser-support.js"
></script>
<script
type="module"
src="https://esm.sh/@oddbird/browser-support@0.1.0"
></script>
Or use the built-in
WebC component
with Eleventy,
by adding "npm:@oddbird/browser-support/*.webc"
to the Eleventy WebC Plugin components
registry:
module.exports = function (eleventyConfig) {
eleventyConfig.addPlugin(eleventyWebcPlugin, {
components: [
"npm:@oddbird/browser-support/*.webc",
],
});
}
Slots
The title
slot allows providing a fallback title,
and also the desired markup.
When the component is defined,
the actual title text will be replaced
with the name of the feature.
ToDo
Support
At OddBird,
we enjoy collaborating and contributing
as part of an open web community.
But those contributions take time and effort.
If you're interested in supporting our
open-source work,
consider becoming a
GitHub sponsor,
or contributing to our
Open Collective.
❤️ Thanks!
Credit
With thanks to the following people: