npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@kevingimbel/eleventy-plugin-caniuse

v1.0.0

Published

Display caniuse.com tables in 11ty

Readme

eleventy-plugin-caniuse

Plugin to include caniuse.com embeds into 11ty websites

Usage

Install plugin

Install the plugin using npm:

npm install @kevingimbel/eleventy-plugin-caniuse

Load the plugin in .eleventy.js

Then, include it in your .eleventy.js config file:

const canIuse = require("@kevingimbel/eleventy-plugin-caniuse");

module.exports = (eleventyConfig) => {
  eleventyConfig.addPlugin(canIuse);
};

Load the caniuse-embed library

The plugin requires the caniuse-embed library from Ire Aderinokun which can be found at https://github.com/ireade/caniuse-embed.

The plugin provides a convenient shortcode to load the library from jsdelivr.com

<body>
...
{% caniuse_js %}
</body>

This will render a script element that loads the library from the jsdelivr.com CDN.

Alternatively you can download the JavaScript code from https://cdn.jsdelivr.net/gh/ireade/caniuse-embed/public/caniuse-embed.min.js and include it in any other way, e.g. by adding it to a JavaScript bundle.

Config Options

| Option | Type | Default | Available options | | ----------- | ---- | ------------- | ----------------- | | accessible_colors | Boolean | true | true, false | | periods | string | future_1,current,past_1,past_2 | future_3, future_2, future_1, current, past_1, past_2, past_3, past_4, past_5 |

See https://caniuse.bitsofco.de/ for more details.

Config Examples

In the following example accessible_colors are disabled and only current and two future browser versions are shown.

const canIuse = require("@kevingimbel/eleventy-plugin-caniuse");

module.exports = (eleventyConfig) => {
  eleventyConfig.addPlugin(canIuse, {
      accessible_colors: false,
      periods: "future_2,future_1,current"
  });
}

Use the shortcode

Syntax

{% caniuse "feature" "periods" "accessible_colors" %}
{% caniuse "css-grid" "future_1,current" "false" %}

Examples

Some examples:

Use default config and embed info about css-grid support

{% caniuse "css-grid" %}

Custom periods

{% caniuse "css-grid" "future_2,future_1,current,past_1" %}

Disable accessible colors

{% caniuse "css-grid" "past_1" "false" %}

FAQ

How can I find the "feature" name?

The name of the feature can be found in the URL of caniuse.com, for example:

https://caniuse.com/async-clipboard -> async-clipboard https://caniuse.com/css-grid -> css-grid

Credits