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

@conkliniam/dropdown-menu

v1.0.1

Published

A reusable dropdown menu.

Readme

Dropdown Menu

This module provides a method to create a dropdown menu.

const createDropdownMenu: (dropdownTitle: any, menuItems: any, hover?: boolean, vertical?: boolean) => HTMLDivElement

Installation

The following command can be used to add the dropdown menu to an existing project:

npm install @conkliniam/dropdown-menu

Usage

The following statement can be used to include the createDropdownMenu method in a JavaScript file:

const { createDropdownMenu } = require("@conkliniam/dropdown-menu");

Here is some example usage that includes some nested dropdown menus:

const container = document.querySelector("#container");

const sevenTwoDropdown = createDropdownMenu(
  "VII II",
  ["VII II I", "VII II II", "VII II III", "VII II IV"],
  true,
  false,
);

const sevenDropdown = createDropdownMenu(
  "VII",
  ["VII I", sevenTwoDropdown, "VII III", "VII IV"],
  true,
  true,
);
const romanNumeralDropdown = createDropdownMenu(
  "Roman Numerals",
  ["I", "II", "III", "IV", "V", "VI", sevenDropdown, "VIII"],
  false,
  false,
);

const angryDropdown = createDropdownMenu(
  "Angry",
  ["Ticked Off", "Furious", "Enraged"],
  true,
  true,
);

const moodDropdown = createDropdownMenu(
  "Moods",
  ["Happy", angryDropdown, "Sad"],
  false,
  false,
);

container.appendChild(romanNumeralDropdown);
container.appendChild(moodDropdown);

This code results in the following dropdown menus: Roman Numerals Dropdown Moods Dropdown

Parameters

The parameters for the createDropdownMenu function include:

  • Parameter: dropdownTitle
    • Type: Element or String
    • Description: This is the value that clicking or hovering causes the dropdown menu to open. Anything other than a String or Element is converted into a String. For Strings, a button is created with the String as the content.
  • Parameter: menuItems
    • Type: list of Element or String
    • Description: These values are added to the the part of the dropdown menu that opens up. Buttons are created for Strings.
  • Parameter: hover
    • Type: boolean
    • Default Value: true
    • Description: If true, open dropdown on hover, if false, open dropdown on click
  • Parameter: vertical
    • Type: boolean
    • Default Value: false
    • Decription: If true, display the menu items verically, if false, display the menu items horizontally

Styling

The dropdown menus created include the following classes.

/* The entire div containing the dropdown menu */
.dropdown-container {
}

/* The title for the dropdown menu */
.dropdown-menu {
}

/* The content of the dropdown menu */
/* This is the part that opens up */
.dropdown-content {
}

/* A menu item within the content */
.dropdown-item {
}

There are also some CSS custom properties that can be adjusted to customize the appearance of the dropdown menu.

.dropdown-container {
  --menu-item-height: 30px;
  --menu-item-width: 100px;
  --dropdown-hover-color: rgb(133, 133, 163);
}