algolia/autocomplete

🔮 Fast and full-featured autocomplete library

View on GitHub ↗Jump to charts ↓Open shareable report →

Summary Information

Updated 36 minutes ago
Added to GitGenius on September 12th, 2026
Created on July 12th, 2015
Open Issues & Pull Requests: 45 (+0)
GitHub issues: Enabled
Number of forks: 341
Total Stargazers: 5,260 (+0)
Total Subscribers: 100 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 41.8 hours
Mean response time: 66.8 days
90th percentile: 195.0 days
Tracked items: 23

Most active contributors

Sign in to see contributor activity.

How this project is maintained

Around half of the issues opened in the past year never receive a reply. Only 4% of issues opened in the past year have been closed. Three people close 67% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 13
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 929 days
Stale 30+ days: 11
Stale 90+ days: 11

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • Scope: Accessibility (1)
  • Scope: Detached mode (1)
  • Status: Needs Investigation (1)
  • Type: Bug (1)

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

Autocomplete is a JavaScript library that lets you quickly build autocomplete experiences.

The library solves the problem of building interactive search-as-you-type interfaces by handling the core logic and accessibility concerns while leaving DOM rendering to you. It requires only a container element, a data source configuration, and any Virtual DOM solution. You define sources that populate results—these can be static search terms, results from an external service like Algolia, recent searches, or any other data. The library generates a fully accessible input and manages interactivity, keyboard navigation, and ARIA attributes automatically, but you retain full control over how results are displayed.

The tool suits developers who want a lightweight, framework-agnostic autocomplete without being locked into a specific rendering approach. It works with vanilla JavaScript, Preact, React, Vue, and other Virtual DOM solutions. Two entry points serve different needs: the autocomplete-js package provides everything needed for a complete out-of-the-box experience, while autocomplete-core offers just the state management and logic for developers building custom renderers. This flexibility makes it appropriate for both quick implementations and highly customized interfaces.

The project maintains active development with regular updates to both core functionality and documentation. The codebase is written in TypeScript, providing type safety for integrations. The repository includes a playground environment for testing and experimentation, and comprehensive API documentation guides developers through configuration options and advanced patterns.