Skip to content
AutoSuggesAutoSugges home
Start free
Menu
Appearance
Appearance: System.

Integration guides

AutoSugges's autocomplete client (@autosugges/client) is one small SDK: bootstrap a list once to read its real minimum-query-length and debounce policy, then query the runtime Worker directly — never PostgreSQL, never Supabase, on the autocomplete path itself. Every framework below wires the same three calls (createAutosuggesClient, bootstrap(), query()) into that framework's idioms for state and rendering.

  • React

    Mount the shipped accessible combobox in a React component — debounce, cancellation, keyboard navigation and ARIA are already wired.

  • Next.js

    Keep the input in a Client Component and the page around it a Server Component, so only the interactive part ships JavaScript.

  • JavaScript (no framework)

    Mount an accessible autocomplete on an ordinary HTML page from a data attribute, with no framework and no hand-written combobox markup.

  • Expo / React Native

    Compose the autocomplete from React Native primitives, with the accessibility semantics supplied by the SDK’s native binding.