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

decked-select

v0.0.2

Published

*decked-select* provides an [html decking layer](https://github.com/bahrus/be-decked-with) that can surround the select element.

Readme

decked-select

decked-select provides an html decking layer that can surround the select element.

It makes the select element customizable, and adds some styling to make the entire decked select have a material UI look and feel.

This package contains a few alternative decking layers, depending on what type of UI is desired:

  1. material-outline-ext-label.html -- external label
  2. material-outline-int-label.html -- places thee label inside the top option.

Sample markup - external label

<script type=importmap >
{
    "imports": {
        "decked-select/": "node_modules/decked-select/"
    }
}
</script>
<script type=module>
    import 'be-decked-with/😶‍🌫️.js';
</script>

<select id=select
    data-label=Country
    😶‍🌫️-src="decked-select/material-outline-ext-label.html">
    <button>
        <selectedcontent></selectedcontent>
    </button>
    <option value="">Select a country</option>
    <option value="us">United States</option>
    <option value="uk">United Kingdom</option>
    <option value="ca">Canada</option>
    <option value="au">Australia</option>
    <option value="de">Germany</option>
    <option value="fr">France</option>
    <option value="jp">Japan</option>
</select>

Sample markup - internal label

<select id=select1
    😶‍🌫️-src="decked-select/material-outline-int-label.html"
    💍
>
    <button>
        <selectedcontent></selectedcontent>
    </button>
    <option class=nothing-selected value=""><label for=select1>Country</label></option>
    <option class=something-selected value="">None</option>
    <option value="us">United States</option>
    <option value="uk">United Kingdom</option>
    <option value="ca">Canada</option>
    <option value="au">Australia</option>
    <option value="de">Germany</option>
    <option value="fr">France</option>
    <option value="jp">Japan</option>
</select>

Having two empty options with classes nothing-selected and something-selected is optional. This is only if you want what the option text to change when another option is selected.

Recommended vscode extensions:

json-in-html, custom link attributes, idref