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

simple-custom-dropdown

v1.0.4

Published

A small, dependency-free custom dropdown component (library scaffold)

Readme

simple-custom-dropdown

Install and usage

npm install simple-custom-dropdown
import { createDropdown } from 'simple-custom-dropdown';

const root = document.getElementById('app');

Quick copy-paste snippet for other projects
------------------------------------------

README to show how to install and use `simple-custom-dropdown`.
Install

```powershell
npm install simple-custom-dropdown

Minimal usage (ESM)

<div id="app"></div>
<script type="module">
	import { createDropdown } from 'simple-custom-dropdown';
	createDropdown(document.getElementById('app'), [
		{ value: '1', label: 'One' },
		{ value: '2', label: 'Two' }
	]);
</script>

Browser embed (CDN)

<script type="module">
	import { createDropdown } from 'https://unpkg.com/[email protected]/dist/index.esm.js';
	createDropdown(document.getElementById('app'), [{ value: '1', label: 'One' }]);
</script>

Event handling example

const container = createDropdown(root, items);
container.addEventListener('change', (e) => console.log('selected', e.detail.value));

Multi-level (nested) lists

simple-custom-dropdown supports nested option trees. Each option can include a children array with more options. Keyboard support includes ArrowRight to open a child sublist and ArrowLeft to go back to the parent.

Example:

createDropdown(root, [
	{ value: 'a', label: 'A' },
	{ value: 'b', label: 'B', children: [
		{ value: 'b-1', label: 'B-1' },
		{ value: 'b-2', label: 'B-2', children: [ { value: 'b-2-1', label: 'B-2-1' } ] }
	] }
]);

Try the demo

  1. Build the package: npm run build
  2. Serve the demo folder with a static server (examples):
npx serve demo -p 5000
# or
npx http-server demo -p 5000
  1. Open http://localhost:5000 in your browser and interact with the dropdown.

Usage: nested options

You can pass nested options and per-item onClick callbacks:

import { createDropdown } from 'simple-custom-dropdown';

const root = document.getElementById('app');
createDropdown(root, [
	{ value: '1', label: 'One' },
	{ value: '2', label: 'Two', children: [ { value: '2-1', label: 'Two-One' } ] },
	{ value: '3', label: 'Three', onClick: (v) => console.log('clicked', v) }
]);

simple-custom-dropdown

A tiny, dependency-free custom dropdown component (library scaffold).

Install and usage

npm install simple-custom-dropdown
import { createDropdown } from 'simple-custom-dropdown';

const root = document.getElementById('app');
createDropdown(root, [{ value: '1', label: 'One' }, { value: '2', label: 'Two' }]);

Ways to check the UI

  1. Manual demo (fast)
  • Build and serve the demo:
npm run build
npx serve demo -p 5000
# or
npx http-server demo -p 5000

Open http://localhost:5000 and click/hover/keyboard test the dropdown.

  1. Local dev server with HMR (recommended for iterative development)
  • Use Vite for fast dev with HMR. Steps (one-time):
npm init vite@latest demo-site --template vanilla
# copy demo/index.html and import from src or dist
cd demo-site
npm install
npm run dev

Quick copy-paste snippet for other projects

Use this short block in another project's docs or README to show how to install and use simple-custom-dropdown.

Install

npm install simple-custom-dropdown

Minimal usage (ESM)

<div id="app"></div>
<script type="module">
	import { createDropdown } from 'simple-custom-dropdown';
	createDropdown(document.getElementById('app'), [
		{ value: '1', label: 'One' },
		{ value: '2', label: 'Two' }
	]);
</script>

Browser embed (CDN)

<script type="module">
	import { createDropdown } from 'https://unpkg.com/[email protected]/dist/index.esm.js';
	createDropdown(document.getElementById('app'), [{ value: '1', label: 'One' }]);
</script>

Event handling example

const container = createDropdown(root, items);
container.addEventListener('change', (e) => console.log('selected', e.detail.value));

Multi-level (nested) lists

simple-custom-dropdown supports nested option trees. Each option can include a children array with more options. Keyboard support includes ArrowRight to open a child sublist and ArrowLeft to go back to the parent.

Example:

createDropdown(root, [
	{ value: 'a', label: 'A' },
	{ value: 'b', label: 'B', children: [
		{ value: 'b-1', label: 'B-1' },
		{ value: 'b-2', label: 'B-2', children: [ { value: 'b-2-1', label: 'B-2-1' } ] }
	] }
]);