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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@szhsin/react-autocomplete

v1.0.2

Published

A modular, lightweight, and headless React autocomplete solution.

Downloads

1,016

Readme

React-Autocomplete

A modular, lightweight, and headless solution.

Examples and Docs

NPM NPM

npm install @szhsin/react-autocomplete

Intro

What's the problem?

  • You require an autocomplete/select/search feature for your website, and you want it to be accessible.
  • You begin by building one from scratch, but quickly realize that the implementation is not trivial.
  • While searching for open-source alternatives, you find that many have significant bundle sizes, typically ranging from 10kB to 50kB[^1], and some do not support tree shaking.
  • Furthermore, these options often do not offer the level of customization you need.

What makes this solution unique?

  • Modular: We carefully design the API with a modular approach, providing a no-frills solution that allows you to bundle only the code you need for your website. No more and no less!

  • Lightweight: At just 1.4 kB[^2], you get a fully functional and accessible autocomplete solution in React. It's almost negligible in size and likely lighter than creating one from scratch, so you can adopt it without hesitation.

  • Customizable: Thanks to the modular design, you can easily customize existing features or even create your own feature (a plugin-style module) to enhance the solution.

Sounds promising! How does it look?

Here’s a live example of the 1.4 kB accessible React autocomplete: open in CodeSandbox

Design Concept

The API consists of a main React hook and a feature that work together under a defined contract.

Main hook

useCombobox/useMultiSelect - acts as the primary entry point, utilizing a classic headless React hook style API. It manages state and data, and must connect with a feature to deliver the required functionalities.

Feature (A replaceable module)

A feature implements the desired functionalities (behavior), such as autocomplete or multiSelect. There are two types of features:

  • Atom: A minimal, indivisible unit that can function independently or be combined into larger features.
  • Molecule: Composed of two or more atoms or other molecules, providing more advanced features.

One advantage of this architecture is you can easily combine any number of atoms or molecules to create the feature you need, as long as the resulting feature conforms to the same contract.

Supported features

  • Autocomplete (Combobox)
  • Supercomplete (Inline text completion)
  • Dropdown with autocomplete
  • Multiple selection
  • Multiple selection in dropdown
  • Select-only Combobox

Visit the site for examples and docs

[^1]: Referring to traditional solutions such as react-select and downshift.

[^2]: Using the autocompleteLite feature.