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 🙏

© 2025 – Pkg Stats / Ryan Hefner

hi-menu

v1.1.3

Published

## Overview The `ContextMenu` library provides an easy way to create customizable and responsive context menus for web applications. This library supports both desktop and mobile devices, ensuring a smooth user experience.

Readme

ContextMenu Library Documentation

Overview

The ContextMenu library provides an easy way to create customizable and responsive context menus for web applications. This library supports both desktop and mobile devices, ensuring a smooth user experience.

Installation

Import the ContextMenu library and its associated styles and assets into your project:

import "./hi-menu.css";
import ContextMenu from "./hi-menu";

Usage

Basic Initialization

Create a new context menu for a specific element by providing its selector ID:

const menu = new ContextMenu("#myElement", (event) => {
  console.log("Context menu triggered", event);
});

This code will initialize a context menu on the element with the ID myElement.

Adding Menu Items

Add items to the context menu using the add method:

menu.add("Option 1", (event) => {
  alert("Option 1 clicked");
});

menu.add("Option 2", () => {
  console.log("Option 2 clicked");
});

Each menu item can have a label and an action callback.

Adding Submenus

To create submenus, pass an array of items as the submenuItems parameter:

menu.add("Parent Option", null, [
  { label: "Child Option 1", action: () => alert("Child 1") },
  { label: "Child Option 2", action: () => alert("Child 2") },
]);

Adding Titles

Set a title for the menu using the title method:

menu.title("My Custom Menu", "left");

The second parameter defines the text alignment (left, center, right).

Handling Focus and Blur Events

You can listen to focus and blur events on the context menu elements:

menu.onFocus((event) => {
  console.log("Element focused", event.target);
});

menu.onBlur((event) => {
  console.log("Element blurred", event.target);
});

Mobile Support

For devices with smaller screens, the context menu is centered on the screen and includes a backdrop to enhance usability.

Example

Here is a complete example of creating a custom context menu:

const contextMenu = new ContextMenu(".clickable-item", (event) => {
  console.log("Context menu opened for", event.target);
});

contextMenu.title("Options");

contextMenu.add("Edit", () => {
  alert("Edit option clicked");
});

contextMenu.add("Delete", () => {
  alert("Delete option clicked");
});

contextMenu.add("More", null, [
  { label: "Sub Option 1", action: () => alert("Sub Option 1 clicked") },
  { label: "Sub Option 2", action: () => alert("Sub Option 2 clicked") },
]);

Methods

hideMenu()

Hides the context menu and the backdrop.

setLongpressEvent()

Enables long-press event handling for mobile devices.

setToElement(callback)

Applies the provided callback function to all elements targeted by the context menu.

Conclusion

The ContextMenu library is a versatile tool for adding custom context menus to your web application, offering rich features and customization options to suit a variety of use cases.