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-react-combobox

v0.2.0

Published

A simple, headless React hook for building **combobox-style autocompletes**.

Readme

simple-react-combobox

A simple, headless React hook for building combobox-style autocompletes.

This library provides only behavior and state management. You are free to render the UI however you like.

  • Headless
  • Lightweight
  • No external dependencies
  • IME-safe (Japanese / Chinese input supported)

Installation

npm install simple-react-combobox

Basic Usage

import { useCombobox } from "simple-react-combobox";

const items = ["Apple", "Banana", "Orange", "Grape"];

export function Example() {
  const {
    inputProps,
    listProps,
    getItemProps,
    isOpen,
    filteredItems,
  } = useCombobox({
    items,
    onSelect: (item) => {
      console.log("selected:", item);
    },
  });

  return (
    <div>
      <input {...inputProps} />

      {isOpen && filteredItems.length > 0 && (
        <ul {...listProps}>
          {filteredItems.map((item, index) => (
            <li key={item} {...getItemProps(index)}>
              {item}
            </li>
          ))}
        </ul>
      )}
    </div>
  );
}

API

useCombobox<T>(options)

Options

type UseComboboxOptions<T> = {
  items: readonly T[];
  itemToString?: (item: T) => string;
  onSelect?: (item: T) => void;
  openOnFocus?: boolean;
  filterFn?: (items: readonly T[], inputValue: string) => readonly T[];
};

items (required)

The source items for the combobox.

itemToString

Converts an item to a string for display and filtering.

Default: String

onSelect

Called when an item is selected via mouse or keyboard.

openOnFocus

If true, opens the list when the input receives focus.

Default: false

filterFn

Custom filtering logic. If omitted, a case-insensitive substring match is used.

const defaultFilter: FilterFn<T> = (items, input) =>
  input === ""
    ? items
    : items.filter((i) =>
      itemToString(i).toLowerCase().includes(input.toLowerCase())
    );

Return Value

type UseComboboxResult<T> = {
  inputProps: TextInputProps;
  listProps: ListProps;
  getItemProps: (index: number) => ItemProps;

  inputValue: string;
  isOpen: boolean;
  setOpen: (open: boolean) => void;

  highlightedIndex: number;
  highlightedItem?: T;

  filteredItems: readonly T[];
};

inputProps

Props for the <input type="text">.

Includes:

  • value
  • onChange
  • onKeyDown
  • IME composition handlers
  • ARIA attributes (role="combobox")

listProps

Props for the list container (e.g. <ul>).

Includes:

  • role="listbox"
  • onMouseDown guard to prevent premature blur

getItemProps(index)

Props for each item element (e.g. <li>).

Handles:

  • mouse hover
  • mouse selection
  • ARIA attributes

inputValue

The current input value.

isOpen

Whether the list is currently open.

setOpen(open: boolean)

Imperatively control the open state. Useful for closing on outside click, etc.

highlightedIndex

The currently highlighted index within filteredItems.

highlightedItem

The currently highlighted item, or undefined.

filteredItems

Items after filtering based on the current input value.

Design Notes

Headless by design

This hook does not render any UI. You control all markup and styling.

Filtering responsibility

Filtering is handled internally by default. You can fully override it with filterFn if needed.

Index semantics

All indices (highlightedIndex, getItemProps) are based on filteredItems, not the original items.

IME-safe

Composition events are handled internally to avoid breaking Japanese / Chinese input.

Accessibility

This hook applies appropriate ARIA roles:

  • combobox
  • listbox
  • option

You are responsible for final markup and styling.

License

MIT